Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/pip/main/pytest-asyncio-gte-0.20-…
Browse files Browse the repository at this point in the history
…and-lt-0.26
  • Loading branch information
e-belfer authored Dec 19, 2024
2 parents 2d1cbb7 + b4e320a commit dc2b7cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pudl_archiver/archivers/epacems.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class EpaCemsArchiver(AbstractDatasetArchiver):
allowed_file_rel_diff = 0.35 # Set higher tolerance than standard

base_url = "https://api.epa.gov/easey/bulk-files/"
parameters = {"api_key": os.environ["EPACEMS_API_KEY"]} # Set to API key
parameters = {"api_key": os.environ.get("EPACEMS_API_KEY")} # Set to API key

def __filter_for_complete_metadata(
self, files_responses: list[dict]
Expand Down

0 comments on commit dc2b7cf

Please sign in to comment.