Skip to content

Commit

Permalink
Merge pull request #46 from openaddresses/fix-cli
Browse files Browse the repository at this point in the history
Pass the correct things into the process-one CLI
  • Loading branch information
iandees authored Sep 1, 2023
2 parents 3e7f11c + f4ed116 commit 82fa599
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion openaddr/process_one.py
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,10 @@ def main():
processed_path = process(args.source, args.destination,
args.layer, args.layersource,
args.generate_geojsonld,
args.render_preview, mapbox_key=args.mapbox_key)
args.render_preview,
args.render_preview,
args.render_preview,
mapbox_key=args.mapbox_key)
except Exception as e:
_L.error(e, exc_info=True)
return 1
Expand Down

0 comments on commit 82fa599

Please sign in to comment.