Skip to content

Commit

Permalink
fix arguments of IVVI driver (#803)
Browse files Browse the repository at this point in the history
  • Loading branch information
peendebak authored and jenshnielsen committed Oct 23, 2017
1 parent 2d48b00 commit 1886482
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions qcodes/instrument_drivers/QuTech/IVVI.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class IVVI(VisaInstrument):
Halfrange = Fullrange / 2

def __init__(self, name, address, reset=False, numdacs=16, dac_step=10,
dac_delay=.1, dac_max_delay=0.2, safe_version=True,
dac_delay=.1, safe_version=True,
polarity=['BIP', 'BIP', 'BIP', 'BIP'],
use_locks=False, **kwargs):
'''
Expand All @@ -45,7 +45,6 @@ def __init__(self, name, address, reset=False, numdacs=16, dac_step=10,
default=['BIP', 'BIP', 'BIP', 'BIP']
dac_step (float) : max step size for dac parameter
dac_delay (float) : delay (in seconds) for dac
dac_max_delay (float) : maximum delay before emitting a warning
safe_version (bool) : if True then do not send version commands
to the IVVI controller
use_locks (bool) : if True then locks are used in the `ask`
Expand Down Expand Up @@ -137,7 +136,6 @@ def __init__(self, name, address, reset=False, numdacs=16, dac_step=10,
self.pol_num[i - 1] + self.Fullrange),
step=dac_step,
delay=dac_delay,
max_delay=dac_max_delay,
max_val_age=10)

self._update_time = 5 # seconds
Expand Down

0 comments on commit 1886482

Please sign in to comment.