Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
Fixes:
chirp/chirp_common.py:398:15: E1101: Instance of 'Memory' has no 'freqx' member; maybe 'freq'? (no-member)
  • Loading branch information
dforsi authored and kk7ds committed Jun 27, 2023
1 parent d977a35 commit 1bbed4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chirp/chirp_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ def format_freq(self):
def parse_freq(self, freqstr):
"""Set the frequency from a string"""
self.freq = parse_freq(freqstr)
return self.freqx
return self.freq

def __str__(self):
if self.tmode == "Tone":
Expand Down

0 comments on commit 1bbed4f

Please sign in to comment.