Skip to content

Commit

Permalink
don't allow subsets of jurisdictions, might break things in bad ways
Browse files Browse the repository at this point in the history
Signed-off-by: John Seekins <[email protected]>
  • Loading branch information
John Seekins committed Aug 4, 2023
1 parent f01b2c2 commit d32913a
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions generate-geo-data.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,6 @@ def main():
description="Download and process shapefiles for defined jurisdictions",
formatter_class=ArgumentDefaultsHelpFormatter,
)
parser.add_argument(
"--jurisdiction",
"-j",
type=str,
nargs="+",
default=JURISDICTION_NAMES,
help="The jurisdiction(s) to download shapefiles for",
)
parser.add_argument(
"--clean-source",
action="store_true",
Expand Down Expand Up @@ -132,7 +124,7 @@ def main():

generate_geo_data(
SETTINGS,
args.jurisdiction,
JURISDICTION_NAMES,
)


Expand Down

0 comments on commit d32913a

Please sign in to comment.