Remove limit in calendar CLI help message for year arg (GH-114719)

The limit was removed in 66c88ce30c (GH-4109).
This commit is contained in:
Steven Ward 2024-01-29 11:00:15 -05:00 committed by GitHub
parent 15fe8cea17
commit 0f54ee4c6c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -737,7 +737,7 @@ def main(args=None):
parser.add_argument(
"year",
nargs='?', type=int,
help="year number (1-9999)"
help="year number"
)
parser.add_argument(
"month",