Skip to content

Commit 3fd294a

Browse files
authored
Merge pull request #528 from graphistry/dev/fix-master-markdown
fix(auth url): revert broken master commits
2 parents 778421b + b8b0054 commit 3fd294a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

graphistry/pygraphistry.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,8 +270,7 @@ def _handle_auth_url(auth_url, sso_timeout, sso_opt_into_type):
270270
if in_ipython() or in_databricks() or sso_opt_into_type == 'display': # If run in notebook, just display the HTML
271271
# from IPython.core.display import HTML
272272
from IPython.display import display, HTML
273-
display(HTML(f'<a href="{auth_url}" target="_blank">old: Login SSO</a>'))
274-
display(Markdown(f'[new: Login SSO]({auth_url})'))
273+
display(HTML(f'<a href="{auth_url}" target="_blank">Login SSO</a>'))
275274
print("Please click the above URL to open browser to login")
276275
print(f"If you cannot see the URL, please open browser, browse to this URL: {auth_url}")
277276
print("Please close browser tab after SSO login to back to notebook")

0 commit comments

Comments
 (0)