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 ede9904 commit cecd39cCopy full SHA for cecd39c
ibllib/io/extractors/signatures.py
@@ -183,7 +183,7 @@
183
('*.cbin', 'raw_ephys_data/probe*', True)]
184
185
def spike_sorting_signature(pname=None):
186
- pname = "probe*" if pname else None
+ pname = pname if pname is not None else "probe*"
187
signature = [('*ap.meta', f'raw_ephys_data/{pname}', True),
188
('*ap.ch', f'raw_ephys_data/{pname}', True),
189
('*ap.cbin', f'raw_ephys_data/{pname}', True),
0 commit comments