Skip to content

Commit d4b67f5

Browse files
author
sprenger
committed
[nix] fix pep8
1 parent 3a0fe74 commit d4b67f5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

neo/rawio/nixrawio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def _source_name(self):
5252
def _parse_header(self):
5353
self.file = nix.File.open(self.filename, nix.FileMode.ReadOnly)
5454
signal_channels = []
55-
anasig_ids = {0: []} # ids of analogsignals by segment
55+
anasig_ids = {0: []} # ids of analogsignals by segment
5656
stream_ids = []
5757
for bl in self.file.blocks:
5858
for seg in bl.groups:

neo/test/iotest/test_nixio_fr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def test_annotations(self):
106106
annotations = {'something': 'hello hello000'}
107107
seg = Segment(**annotations)
108108
an =AnalogSignal([[1, 2, 3], [4, 5, 6]], units='V',
109-
sampling_rate=1*pq.Hz)
109+
sampling_rate=1 * pq.Hz)
110110
an.annotate(ansigrandom='hello chars')
111111
an.array_annotate(custom_id=[1, 2, 3])
112112
sp = SpikeTrain([3, 4, 5]* s, t_stop=10.0)

0 commit comments

Comments
 (0)