Skip to content

Commit

Permalink
Merge pull request #90 from HenningTimm/patch-1
Browse files Browse the repository at this point in the history
Fix bug in random seed handling
  • Loading branch information
Giancarlo Perrone committed Apr 29, 2021
2 parents b6495b8 + fbc21ac commit 4c52130
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyvis/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def __init__(self, randomSeed=None, improvedLayout=True):
if not randomSeed:
self.randomSeed = 0
else:
self.radnomSeed = randomSeed
self.randomSeed = randomSeed
self.improvedLayout = improvedLayout
self.hierarchical = self.Hierarchical(enabled=True)

Expand Down

0 comments on commit 4c52130

Please sign in to comment.