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 b6b5ee4 commit 794fb57Copy full SHA for 794fb57
src/sagemaker/lineage/query.py
@@ -408,22 +408,23 @@ def _import_visual_modules(self):
408
import pyvis
409
from pyvis.network import Network
410
from pyvis.options import Options
411
+ # No module named 'pyvis'
412
413
return pyvis, Network, Options
414
415
def _get_options(self):
416
options = """
417
var options = {
418
"configure":{
- "enabled": true
419
+ "enabled": false
420
},
421
"layout": {
422
"hierarchical": {
423
"enabled": true,
- "blockShifting": false,
424
+ "blockShifting": true,
425
"direction": "LR",
426
"sortMethod": "directed",
- "shakeTowards": "roots"
427
+ "shakeTowards": "leaves"
428
}
429
430
"interaction": {
0 commit comments