Skip to content

Commit

Permalink
Fix arg action
Browse files Browse the repository at this point in the history
  • Loading branch information
EricTendian committed Nov 15, 2023
1 parent 49c369c commit 9a8b5f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/broadcastify-calls.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,13 +276,13 @@ def process_call(
parser.add_argument(
"--transcribe",
default=True,
action="store_true",
action=argparse.BooleanOptionalAction,
help="Whether or not to send the calls to be transcribed",
)
parser.add_argument(
"--openmhz",
default=False,
action="store_true",
action=argparse.BooleanOptionalAction,
help="Whether or not to send the calls to OpenMHz.com",
)
args = parser.parse_args()
Expand Down

0 comments on commit 9a8b5f8

Please sign in to comment.