Skip to content

Commit

Permalink
removed debug prints, bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
perdigao1 committed Aug 7, 2023
1 parent 42c37a3 commit d09c435
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/napari_h5/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.0.3"
__version__ = "0.0.4"

from ._reader import get_reader
from ._writer import multi_layer_writer, single_layer_writer
Expand Down
5 changes: 2 additions & 3 deletions src/napari_h5/_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def reader_function(path):
# # stack arrays into single array
# data = np.squeeze(np.stack(arrays))

print("reader_function()") #Debug
#print("reader_function()") #Debug
import pathlib
import h5py

Expand All @@ -88,8 +88,7 @@ def reader_function(path):
for k0,i0 in list(f.items()):
if isinstance(i0, h5py._hl.dataset.Dataset):
#Grab data from this dataset

print(f"Dataset name:{k0} found") #Debug
#print(f"Dataset name:{k0} found") #Debug

f_path = pathlib.Path(str(p0))
fname_stem = f_path.stem
Expand Down

0 comments on commit d09c435

Please sign in to comment.