Skip to content

Commit

Permalink
fix: added corrected key to object configuration dictionary
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexPatrie committed Jul 26, 2023
1 parent 0a003c4 commit 95ba2b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vivarium_tellurium/processes/tellurium_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def __init__(self, config=None):
if self.parameters.get('antimony_string'):
self.simulator = te.loada(self.parameters['antimony_string'])
else:
self.simulator = te.loadSBMLModel(self.parameters['sbml_model_file'])
self.simulator = te.loadSBMLModel(self.parameters['sbml_model_path'])

# extract the variables
self.species = self.simulator.get_species() # PLACEHOLDER!!!!!!!!
Expand Down

0 comments on commit 95ba2b2

Please sign in to comment.