Skip to content

Commit

Permalink
fix: missing keyword argument in
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Aug 27, 2019
1 parent 910f55b commit 2f10557
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
0.10.4
- fix: missing keyword argument `idx` in `SingleTifHolo.get_time`
0.10.3
- fix: Correctly pass precision to phasics and hologram zip file
formats
Expand Down
2 changes: 1 addition & 1 deletion qpformat/file_formats/single_tif_holo.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def _get_tif(path):
path = fspath(path)
return tifffile.TiffFile(path)

def get_time(self):
def get_time(self, idx=0):
"""Time of the TIFF file
Currently, only the file modification time is supported.
Expand Down

0 comments on commit 2f10557

Please sign in to comment.