Skip to content

Commit

Permalink
Remove limit in calendar CLI help message for year arg (pythonGH-114719)
Browse files Browse the repository at this point in the history
The limit was removed in 66c88ce (pythonGH-4109).
  • Loading branch information
planet36 authored and aisk committed Feb 11, 2024
1 parent 3e1e4cf commit f2c8e11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/calendar.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit f2c8e11

Please sign in to comment.