Skip to content

Commit

Permalink
fix : --test argument default value set to False
Browse files Browse the repository at this point in the history
  • Loading branch information
sepandhaghighi committed Dec 8, 2024
1 parent c3a958e commit 604b555
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reserver/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def main():
metavar="(TEST.PYPI|PYPI)_TOKEN",
help='The token for (main|test) PyPI account',
)
parser.add_argument('--test', action='store_true', help='test PyPI (test.pypi.org)')
parser.add_argument('--test', action='store_true', help='test PyPI (test.pypi.org)', default=False)
parser.add_argument('--version', help="version", action='store_true', default=False)
parser.add_argument('-v', help="version", action='store_true', default=False)
args = parser.parse_known_args()[0]
Expand Down

0 comments on commit 604b555

Please sign in to comment.