Skip to content

Commit

Permalink
fixed typo in calibration code #637
Browse files Browse the repository at this point in the history
  • Loading branch information
zarath committed May 13, 2023
1 parent aab2a15 commit ce8a59d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/NanoVNASaver/Windows/CalibrationSettings.py
Original file line number Diff line number Diff line change
Expand Up @@ -541,14 +541,14 @@ def calculate(self):
cal_element.short_is_ideal = True
cal_element.open_is_ideal = True
cal_element.load_is_ideal = True
cal_element.throuh_is_ideal = True
cal_element.through_is_ideal = True

# TODO: all ideal or not?
if not self.use_ideal_values.isChecked():
cal_element.short_is_ideal = False
cal_element.open_is_ideal = False
cal_element.load_is_ideal = False
cal_element.throuh_is_ideal = False
cal_element.through_is_ideal = False

# We are using custom calibration standards

Expand Down

0 comments on commit ce8a59d

Please sign in to comment.