Skip to content

Commit 564bcf1

Browse files
authored
Merge branch 'main' into patch_nearest_peeler
2 parents b16004c + eecaffe commit 564bcf1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ repos:
66
- id: end-of-file-fixer
77
- id: trailing-whitespace
88
- repo: https://github.com/psf/black-pre-commit-mirror
9-
rev: 26.3.1
9+
rev: 26.5.0
1010
hooks:
1111
- id: black
1212
files: ^src/

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)