Skip to content

Commit 235194b

Browse files
committed
pep8
1 parent e167f9d commit 235194b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

neo/rawio/maxwellrawio.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,9 @@ def _parse_header(self):
7575
rec_names = list(h5['wells'][stream_id].keys())
7676
if len(rec_names) > 1:
7777
if self.rec_name is None:
78-
raise ValueError("Detected multiple recordings. Please select a single recording using"
79-
f' the `rec_name` paramter.\nPossible rec_name {rec_names}')
78+
raise ValueError("Detected multiple recordings. Please select a "
79+
"single recording using the `rec_name` paramter. "
80+
f"Possible rec_name {rec_names}")
8081
else:
8182
self.rec_name = rec_names[0]
8283
signal_streams.append((stream_id, stream_id))

0 commit comments

Comments
 (0)