Skip to content

Commit

Permalink
Fix typo in parsers
Browse files Browse the repository at this point in the history
  • Loading branch information
jenshnielsen committed Jul 7, 2022
1 parent 2792c51 commit 05f5a6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qcodes/instrument_drivers/agilent/Agilent_E8257D.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ def __init__(
unit="deg",
get_cmd="PHASE?",
set_cmd="PHASE" + " {:.8f}",
get_parser=np.rad2deg(),
set_parser=np.deg2rad(),
get_parser=np.rad2deg,
set_parser=np.deg2rad,
vals=vals.Numbers(-180, 180),
)

Expand Down

0 comments on commit 05f5a6b

Please sign in to comment.