Skip to content

Commit 794fb57

Browse files
author
Yi-Ting Lee
committed
modify options
1 parent b6b5ee4 commit 794fb57

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/sagemaker/lineage/query.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -408,22 +408,23 @@ def _import_visual_modules(self):
408408
import pyvis
409409
from pyvis.network import Network
410410
from pyvis.options import Options
411+
# No module named 'pyvis'
411412

412413
return pyvis, Network, Options
413414

414415
def _get_options(self):
415416
options = """
416417
var options = {
417418
"configure":{
418-
"enabled": true
419+
"enabled": false
419420
},
420421
"layout": {
421422
"hierarchical": {
422423
"enabled": true,
423-
"blockShifting": false,
424+
"blockShifting": true,
424425
"direction": "LR",
425426
"sortMethod": "directed",
426-
"shakeTowards": "roots"
427+
"shakeTowards": "leaves"
427428
}
428429
},
429430
"interaction": {

0 commit comments

Comments
 (0)