Skip to content

Commit 883a0ce

Browse files
authored
pep8 fix openephysrawio.py
1 parent 2a7dbfe commit 883a0ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

neo/rawio/openephysrawio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ def explore_folder(dirname):
492492
if (seg_index + 1) > info['nb_segment']:
493493
info['nb_segment'] += 1
494494
elif filename.endswith('.spikes'):
495-
s = re.findall("(_\d+)$", filename.replace('.spikes', ''))
495+
s = re.findall(r"(_\d+)$", filename.replace('.spikes', ''))
496496
if s:
497497
seg_index = int(s[0][1:]) - 1
498498
else:

0 commit comments

Comments
 (0)