Skip to content

Commit

Permalink
Merge pull request #179 from eendebakpt/fix_keithley_unit_and_label
Browse files Browse the repository at this point in the history
Fix Keithley6500 driver
  • Loading branch information
jenshnielsen authored Nov 21, 2022
2 parents 6a3df1c + 184c44d commit c1ed848
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qcodes_contrib_drivers/drivers/Tektronix/Keithley_6500.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ def __init__(self, parent: VisaInstrument, name: str, channel: str) -> None:
super().__init__(parent, name)

self.add_parameter('measure',
unit=partial(self._get_unit, channel),
label=partial(self._get_label, channel),
unit=self._get_unit(channel),
label=self._get_label(channel),
get_parser=float,
get_cmd=partial(self.parent._measure, channel),
docstring="Measure value of chosen quantity (Current/Voltage/Resistance/Temperature)."
Expand Down

0 comments on commit c1ed848

Please sign in to comment.