Skip to content
Snippets Groups Projects
Commit e1d1d347 authored by Zhang, Zhichao's avatar Zhang, Zhichao
Browse files

correct typo on store function

parent df8bcba4
No related branches found
No related tags found
No related merge requests found
......@@ -43,7 +43,7 @@ class Storage:
# def is_overwritable(self):
# return self.storage_path.exists()
def store_HDF5(self, root=h5py.File):
def store_HDF5(self, root=None):
'''sub-method of store() for HDF5 output
Parameters
......@@ -103,7 +103,7 @@ class Storage:
for i in eval(attr):
i.store_HDF5(root=s_grp)
def store_json(self, root=dict):
def store_json(self, root=None):
'''sub-method of store() for JSON output
Parameters
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment