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 2a7dbfe commit 883a0ceCopy full SHA for 883a0ce
neo/rawio/openephysrawio.py
@@ -492,7 +492,7 @@ def explore_folder(dirname):
492
if (seg_index + 1) > info['nb_segment']:
493
info['nb_segment'] += 1
494
elif filename.endswith('.spikes'):
495
- s = re.findall("(_\d+)$", filename.replace('.spikes', ''))
+ s = re.findall(r"(_\d+)$", filename.replace('.spikes', ''))
496
if s:
497
seg_index = int(s[0][1:]) - 1
498
else:
0 commit comments