Skip to content

Commit

Permalink
Remove use of StandardParameter in Station
Browse files Browse the repository at this point in the history
  • Loading branch information
astafan8 committed Nov 30, 2019
1 parent a3ce664 commit 107f179
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions qcodes/station.py
Expand Up @@ -31,7 +31,7 @@
from qcodes.instrument.base import Instrument, InstrumentBase
from qcodes.instrument.channel import ChannelList
from qcodes.instrument.parameter import (
Parameter, ManualParameter, StandardParameter,
Parameter, ManualParameter,
DelegateParameter, _BaseParameter)
import qcodes.utils.validators as validators
from qcodes.monitor.monitor import Monitor
Expand Down Expand Up @@ -173,8 +173,7 @@ def snapshot_base(self, update: bool = True,
else:
components_to_remove.append(name)
elif isinstance(itm, (Parameter,
ManualParameter,
StandardParameter
ManualParameter
)):
snap['parameters'][name] = itm.snapshot(update=update)
else:
Expand Down

0 comments on commit 107f179

Please sign in to comment.