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 34d5478 commit cfa3713Copy full SHA for cfa3713
bioimageio/core/io.py
@@ -81,11 +81,11 @@ def _split_dataset_path(path: Path) -> Tuple[Path, Optional[PurePosixPath]]:
81
82
Examples:
83
>>> _split_dataset_path(Path("my_file.h5/dataset"))
84
- (PosixPath('my_file.h5'), PurePosixPath('dataset'))
+ (...Path('my_file.h5'), PurePosixPath('dataset'))
85
86
If no suffix is detected the path is returned with
87
>>> _split_dataset_path(Path("my_plain_file"))
88
- (PosixPath('my_plain_file'), None)
+ (...Path('my_plain_file'), None)
89
90
"""
91
if path.suffix:
0 commit comments