Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Feb 26, 2024
1 parent 5d6f190 commit 16960f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pangeo_forge_runner/commands/bake.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,8 +178,8 @@ def start(self):
# alert if deps in requirements.txt are missing things
from importlib.metadata import distributions

deps_set = set(["pangeo-forge-recipes", "fsspec", "apache-beam"])
dist_set = set([d.metadata["Name"] for d in distributions()])
deps_set = {"pangeo-forge-recipes", "fsspec", "apache-beam"}
dist_set = {d.metadata["Name"] for d in distributions()}
missing_deps = deps_set - dist_set
if missing_deps:
raise ValueError(
Expand Down

0 comments on commit 16960f3

Please sign in to comment.