Skip to content

Commit b45cb79

Browse files
committed
ignore AppleDouble format files on extension load
1 parent 9afe308 commit b45cb79

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/spikeinterface/core/sortinganalyzer.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2219,6 +2219,7 @@ def load_data(self):
22192219
ext_data_file.name == "params.json"
22202220
or ext_data_file.name == "info.json"
22212221
or ext_data_file.name == "run_info.json"
2222+
or str(ext_data_file.name).startswith("._") # ignore AppleDouble format files
22222223
):
22232224
continue
22242225
ext_data_name = ext_data_file.stem

0 commit comments

Comments
 (0)