Skip to content

Commit cfa3713

Browse files
committed
make docstring test os independent
1 parent 34d5478 commit cfa3713

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
@@ -81,11 +81,11 @@ def _split_dataset_path(path: Path) -> Tuple[Path, Optional[PurePosixPath]]:
8181
8282
Examples:
8383
>>> _split_dataset_path(Path("my_file.h5/dataset"))
84-
(PosixPath('my_file.h5'), PurePosixPath('dataset'))
84+
(...Path('my_file.h5'), PurePosixPath('dataset'))
8585
8686
If no suffix is detected the path is returned with
8787
>>> _split_dataset_path(Path("my_plain_file"))
88-
(PosixPath('my_plain_file'), None)
88+
(...Path('my_plain_file'), None)
8989
9090
"""
9191
if path.suffix:

0 commit comments

Comments
 (0)