Skip to content

Commit

Permalink
Merge pull request #45 from kiwix/fix-create-countries-cmd
Browse files Browse the repository at this point in the history
remove stdin default from create-countries subcommand
  • Loading branch information
elfkuzco authored Aug 24, 2024
2 parents 0c088e1 + 93da9ba commit b522855
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 b522855

Please sign in to comment.