From d32913a2e71f167be60ba0a18d2b11b68557b50e Mon Sep 17 00:00:00 2001 From: John Seekins Date: Fri, 4 Aug 2023 09:32:20 -0600 Subject: [PATCH] don't allow subsets of jurisdictions, might break things in bad ways Signed-off-by: John Seekins --- generate-geo-data.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/generate-geo-data.py b/generate-geo-data.py index c81dfd0..69396bb 100644 --- a/generate-geo-data.py +++ b/generate-geo-data.py @@ -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", @@ -132,7 +124,7 @@ def main(): generate_geo_data( SETTINGS, - args.jurisdiction, + JURISDICTION_NAMES, )