Skip to content

Commit

Permalink
Fixing module constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
cshenry committed Mar 23, 2024
1 parent 18c3c24 commit 0567a70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ModelSEEDReconstruction/modelseedrecon.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

class ModelSEEDRecon(BaseModelingModule):
def __init__(self,config,module_dir="/kb/module",working_dir=None,token=None,clients={},callback=None):
BaseModelingModule.__init__(self,"ModelSEEDReconstruction",config,module_dir,working_dir,token,clients,callback)
BaseModelingModule.__init__(self,"ModelSEEDReconstruction",config,module_dir=module_dir,working_dir=working_dir,token=token,clients=clients,callback=callback)
self.core_template = None
self.gs_template = None
self.version = "0.1.1.msr"
Expand Down

0 comments on commit 0567a70

Please sign in to comment.