Skip to content

Commit

Permalink
Merge pull request #299 from jonwright/master
Browse files Browse the repository at this point in the history
Load via the init method because of the update paths bug
  • Loading branch information
jonwright authored Jul 15, 2024
2 parents f4d47d9 + 3948890 commit 1d6d717
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions ImageD11/sinograms/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -790,9 +790,8 @@ def load(self, h5name=None, h5group="/"):
return self


def load(h5name, h5group="/"):
ds_obj = DataSet().load(h5name, h5group)

def load(h5name):
ds_obj = DataSet(filename = h5name)
return ds_obj


Expand Down

0 comments on commit 1d6d717

Please sign in to comment.