Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
perdigao1 committed Sep 26, 2023
1 parent d9579b4 commit ce9c922
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/napari_h5/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from ._writer import multi_layer_writer, single_layer_writer

__all__ = (
"napari_get_reader",
"write_single_image",
"write_multiple",
"get_reader",
"single_layer_writer",
"multi_layer_writer",
)
2 changes: 1 addition & 1 deletion src/napari_h5/_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def multi_layer_writer(path: str, layer_data: List[FullLayerData]) -> List[str]:

from pathlib import Path
path0 = Path(str)
for i, d0 in enumerate(data):
for i, d0 in enumerate(layer_data):
path1 = f"{path0.stem()}_{i:03d}{path0.suffix()}"

try:
Expand Down

0 comments on commit ce9c922

Please sign in to comment.