Remove requred from positional args

This commit is contained in:
Adrià Casajús 2024-07-25 10:08:15 +02:00
parent 8262390bf0
commit 574a916cff
No known key found for this signature in database
GPG Key ID: F0033226A5AFC9B9

View File

@ -57,7 +57,6 @@ def args():
"max_retries", "max_retries",
help="Max retries to consider an event as error and not try to process it again", help="Max retries to consider an event as error and not try to process it again",
type=int, type=int,
required=False,
default=_DEFAULT_MAX_RETRIES, default=_DEFAULT_MAX_RETRIES,
) )
parser.add_argument("--dry-run", help="Dry run mode", action="store_true") parser.add_argument("--dry-run", help="Dry run mode", action="store_true")