diff --git a/frappy_psi/pulse.py b/frappy_psi/pulse.py index 7715d07..7da6706 100644 --- a/frappy_psi/pulse.py +++ b/frappy_psi/pulse.py @@ -48,7 +48,7 @@ class Base(HasIO): return self.communicate(f'smua.measure.{cmd} = {val}') -class Create_Pulse(Base, Readable, Writable): +class Create_Pulse(Base, Writable): target = Parameter('source target', FloatRange, unit='A', readonly=False) width = Parameter('pulse width', FloatRange, unit="s", readonly=False) resistance = Parameter('resistance', FloatRange) @@ -72,3 +72,4 @@ class Create_Pulse(Base, Readable, Writable): class Script(Create_Pulse): + pass