Skip to content

Commit

Permalink
fix bad reference
Browse files Browse the repository at this point in the history
  • Loading branch information
RHammond2 committed Sep 8, 2023
1 parent 4cfe1ee commit 85e4ea5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wombat/core/simulation_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,8 +279,8 @@ def from_config(cls, config: str | Path | dict | Configuration):
return cls( # type: ignore
library_path=config.library,
config=config,
random_seed=cls.random_seed,
random_generator=cls.random_generator,
random_seed=config.random_seed,
random_generator=config.random_generator,
)

def _setup_simulation(self):
Expand Down

0 comments on commit 85e4ea5

Please sign in to comment.