Skip to content

Commit

Permalink
Do not override config file configurations with default arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
Valentin-Metz committed Dec 21, 2024
1 parent 1873bd8 commit 7c4c60e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ def parse_command_line_arguments():
parser.add_argument("-u", "--username", help="TUM-Username (go42tum)", type=str)
parser.add_argument("-p", "--password", help="TUM-Password (must fit to the TUM-Username)", type=str)

parser.add_argument("-k", "--keep", type=bool, default=True,
parser.add_argument("-k", "--keep", type=bool,
help="Whether to keep the original file of a downloaded video. Defaults to True. Optional.")
parser.add_argument("-j", "--jump_cut", type=bool, default=True,
parser.add_argument("-j", "--jump_cut", type=bool,
help="Whether to jump-cut the videos or not. Defaults to True. Optional.")

parser.add_argument("-o", "--output_folder", type=Path,
Expand Down

0 comments on commit 7c4c60e

Please sign in to comment.