Skip to content

Commit

Permalink
fix(main): fixing optional argument
Browse files Browse the repository at this point in the history
  • Loading branch information
Giudice7 committed Jan 15, 2025
1 parent 12f113e commit c4d5c1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cmp/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
parser.add_argument('input_file', help='Path to file', type=str)
parser.add_argument('variable_name', help='Variable name', type=str)
parser.add_argument('output_file', help='Path to the output file', type=str, default=None)
parser.add_argument('country', help='The country code as defined by https://pypi.org/project/holidays/', type=str)
parser.add_argument('-country', help='The country code as defined by https://pypi.org/project/holidays/', type=str)
args = parser.parse_args()

########################################################################################
Expand Down

0 comments on commit c4d5c1d

Please sign in to comment.