Skip to content

Commit

Permalink
Merge pull request #188 from samuelgarcia/master
Browse files Browse the repository at this point in the history
neo.AnalogSignal remove copy
  • Loading branch information
samuelgarcia authored Nov 18, 2024
2 parents 532cc1a + b6fb0d0 commit 5d14c73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ephyviewer/tests/test_traceviewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def test_traceviewer_cls_method_neo(interactive=False):
sample_rate = 1000.
t_start = 0.

neo_anasig = neo.AnalogSignal(sigs*pq.mV, sampling_rate=sample_rate*pq.Hz, t_start=0*pq.s, copy=True)
neo_anasig = neo.AnalogSignal(sigs*pq.mV, sampling_rate=sample_rate*pq.Hz, t_start=0*pq.s)
print(neo_anasig)


Expand Down

0 comments on commit 5d14c73

Please sign in to comment.