Skip to content

Commit

Permalink
fix arg
Browse files Browse the repository at this point in the history
  • Loading branch information
Juanito98 committed May 14, 2024
1 parent 189ab45 commit b0d8d9e
Showing 1 changed file with 7 additions and 12 deletions.
19 changes: 7 additions & 12 deletions uploadcontests.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,16 @@ def _main() -> None:
env = os.environ

parser = argparse.ArgumentParser(description="Upsert contests to OmegaUp")
parser.add_argument(
'--cli',
action='store_true',
help='Signal that the script is being run from the CLI',
)
parser.add_argument('--ci',
action='store_true',
help='Signal that this is being run from the CI.')
parser.add_argument(
'--all',
action='store_true',
help='Upsert all contests, instead of only those that have changed',
)
parser.add_argument(
'--verbose',
action='store_true',
help='Verb',
)
help='Upsert all contests, instead of only those that have changed')
parser.add_argument('--verbose',
action='store_true',
help='Verbose logging')
parser.add_argument('--url',
default='https://omegaup.com',
help='URL of the omegaUp host.')
Expand Down

0 comments on commit b0d8d9e

Please sign in to comment.