Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
0x9900 committed Jun 11, 2024
1 parent 54e9f0d commit f69fe40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sa818.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def version(self):
try:
version = re.split(r'[:_]', reply)
except ValueError:
logger.error('Unable to decode the firmeare version')
logger.error('Unable to decode the firmware version')
return None

logger.info('Firmware %s, version: %s', version[1], '_'.join(version[2:]))
Expand Down Expand Up @@ -343,7 +343,7 @@ def command_parser():
help="Connection speed")
subparsers = parser.add_subparsers()

p_radio = subparsers.add_parser("radio", help='Program the radio (frequency/tome/squelch)')
p_radio = subparsers.add_parser("radio", help='Program the radio (frequency/tone/squelch)')
p_radio.set_defaults(func="radio")
p_radio.add_argument('--bw', type=int, choices=(0, 1), default=1,
help="Bandwidth 0=NARROW (12.5KHz), 1=WIDE (25KHx) [default: WIDE]")
Expand Down

0 comments on commit f69fe40

Please sign in to comment.