Skip to content

Commit 864f94c

Browse files
authored
SortingAnalyzer: intepret any remote path as zarr (#4583)
1 parent cfd4c2e commit 864f94c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/spikeinterface/core/sortinganalyzer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ def load(cls, folder, recording=None, load_extensions=True, format="auto", backe
415415
"""
416416
if format == "auto":
417417
# make better assumption and check for auto guess format
418-
if Path(folder).suffix == ".zarr":
418+
if Path(folder).suffix == ".zarr" or is_path_remote(folder):
419419
format = "zarr"
420420
else:
421421
format = "binary_folder"

0 commit comments

Comments
 (0)