We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79b193a commit 60904d5Copy full SHA for 60904d5
src/sagemaker/lineage/query.py
@@ -215,19 +215,22 @@ def _import_visual_modules(self):
215
import dash_cytoscape as cyto
216
except ImportError as e:
217
print(e)
218
- print("try pip install dash-cytoscape")
+ print("Try: pip install dash-cytoscape")
219
+ raise
220
221
try:
222
from jupyter_dash import JupyterDash
223
224
- print("try pip install jupyter-dash")
225
+ print("Try: pip install jupyter-dash")
226
227
228
229
from dash import html
230
231
- print("try pip install dash")
232
+ print("Try: pip install dash")
233
234
235
return cyto, JupyterDash, html
236
0 commit comments