Skip to content

Commit

Permalink
Fix typo in mypy for vna driver (#866)
Browse files Browse the repository at this point in the history
  • Loading branch information
jjmartinezQT authored Jan 9, 2025
1 parent f422e69 commit 872e0b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qililab/instruments/keysight/e5080b_vna.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def set_parameter(self, parameter: Parameter, value: ParameterValue, channel_id:
self.electrical_delay = value
return
if parameter == Parameter.SWEEP_MODE:
self.set_sweep_mode(value=value, channel=channel_id)
self.set_sweep_mode(value=value, channel=channel_id) # type: ignore
return
if parameter == Parameter.DEVICE_TIMEOUT:
self.device_timeout = value
Expand Down

0 comments on commit 872e0b8

Please sign in to comment.