We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f155c9d commit 150df64Copy full SHA for 150df64
bioimageio/core/io.py
@@ -77,11 +77,11 @@ def _split_dataset_path(path: Path) -> Tuple[Path, Optional[PurePosixPath]]:
77
78
Examples:
79
>>> _split_dataset_path(Path("my_file.h5/dataset"))
80
- (Path("my_file.h5"), PurePosixPath("dataset"))
+ (PosixPath('my_file.h5'), PurePosixPath('dataset'))
81
82
If no suffix is detected the path is returned with
83
>>> _split_dataset_path(Path("my_plain_file"))
84
- (Path("my_plain_file"), None)
+ (PosixPath('my_plain_file'), None)
85
86
"""
87
if path.suffix:
0 commit comments