Skip to content

Commit

Permalink
Removed type parameter.
Browse files Browse the repository at this point in the history
  • Loading branch information
hendriks73 committed Oct 17, 2024
1 parent ab832fc commit 31a027e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tempocnn/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,10 @@ def tempo():

output_format = parser.add_mutually_exclusive_group()
output_format.add_argument(
"--mirex", help="use MIREX format for output", action="store_true", type=bool
"--mirex", help="use MIREX format for output", action="store_true"
)
output_format.add_argument(
"--jams", help="use JAMS format for output", action="store_true", type=bool
"--jams", help="use JAMS format for output", action="store_true"
)

parser.add_argument(
Expand Down

0 comments on commit 31a027e

Please sign in to comment.