Skip to content

Commit 59f5132

Browse files
committed
GH AllenInstitute#533 - Changed order of autobias_v in Sweep()
autobias_v was out of order and disrupting the other positional arguments. It has been moved and set to None as default.
1 parent 658d8d2 commit 59f5132

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ipfx/sweep.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
class Sweep(object):
5-
def __init__(self, t, v, i, clamp_mode, autobias_v, sampling_rate, sweep_number=None, epochs=None):
5+
def __init__(self, t, v, i, clamp_mode, sampling_rate, sweep_number=None, epochs=None, autobias_v=None):
66
self._t = t
77
self._v = v
88
self._i = i

0 commit comments

Comments
 (0)