Skip to content

Commit

Permalink
remove stdin default from create-countries subcommand
Browse files Browse the repository at this point in the history
  • Loading branch information
elfkuzco committed Aug 24, 2024
1 parent 0c088e1 commit 93da9ba
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions backend/src/mirrors_qa_backend/entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,9 @@ def main():
"country_region_csv_file",
metavar="csv-file",
type=argparse.FileType("r", encoding="utf-8"),
nargs="?",
default=sys.stdin,
help=(
"CSV file containing countries and associated regions "
"(format: Maxmind's GeoIPLite Country Locations csv) (default: stdin)."
"(format: Maxmind's GeoIPLite Country Locations csv)."
),
)

Expand Down

0 comments on commit 93da9ba

Please sign in to comment.