Skip to content

Commit 059eec4

Browse files
committed
Fix PEP8
1 parent 98722a5 commit 059eec4

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

neo/rawio/maxwellrawio.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@ def _parse_header(self):
9696
gain_uV = settings['lsb'][:][0] * 1e6
9797
else:
9898
if "gain" not in settings:
99-
print("'gain' amd 'lsb' not found in settings. Setting gain to 512 (default)")
99+
print("'gain' amd 'lsb' not found in settings. "
100+
"Setting gain to 512 (default)")
100101
gain = 512
101102
else:
102103
gain = settings['gain'][:][0]
@@ -113,7 +114,8 @@ def _parse_header(self):
113114
gain_uV = settings['lsb'][:][0] * 1e6
114115
else:
115116
if "gain" not in settings:
116-
print("'gain' amd 'lsb' not found in settings. Setting gain to 512 (default)")
117+
print("'gain' amd 'lsb' not found in settings. "
118+
"Setting gain to 512 (default)")
117119
gain = 512
118120
else:
119121
gain = settings['gain'][:][0]

0 commit comments

Comments
 (0)