Skip to content

Commit 150df64

Browse files
committed
fix docstring test
1 parent f155c9d commit 150df64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bioimageio/core/io.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,11 @@ def _split_dataset_path(path: Path) -> Tuple[Path, Optional[PurePosixPath]]:
7777
7878
Examples:
7979
>>> _split_dataset_path(Path("my_file.h5/dataset"))
80-
(Path("my_file.h5"), PurePosixPath("dataset"))
80+
(PosixPath('my_file.h5'), PurePosixPath('dataset'))
8181
8282
If no suffix is detected the path is returned with
8383
>>> _split_dataset_path(Path("my_plain_file"))
84-
(Path("my_plain_file"), None)
84+
(PosixPath('my_plain_file'), None)
8585
8686
"""
8787
if path.suffix:

0 commit comments

Comments
 (0)