Skip to content

Commit

Permalink
Allow GCP storage prefix to be modified by env var
Browse files Browse the repository at this point in the history
  • Loading branch information
jessemortenson committed Jul 31, 2024
1 parent d15accc commit 2442a91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openstates/cli/update.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
# Settings to archive scraped out put to GCP Cloud Storage
GCP_PROJECT = os.environ.get("GCP_PROJECT", None)
BUCKET_NAME = os.environ.get("BUCKET_NAME", None)
SCRAPE_LAKE_PREFIX = "legislation"
SCRAPE_LAKE_PREFIX = os.environ.get("BUCKET_PREFIX", "legislation")


class _Unset:
Expand Down

0 comments on commit 2442a91

Please sign in to comment.