Skip to content

Commit

Permalink
Reformat x.py
Browse files Browse the repository at this point in the history
  • Loading branch information
chmp committed Jan 6, 2024
1 parent 9aaa323 commit 89cca05
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion x.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,12 @@ def check_cargo_toml():
)

for component in ["arrow-array", "arrow-schema", "arrow-data", "arrow-buffer"]:
expected_dep = {"package": component, "version": version, "optional": True, "default-features": False}
expected_dep = {
"package": component,
"version": version,
"optional": True,
"default-features": False,
}
actual_dep = config["dependencies"].get(f"{component}-{version}")

if actual_dep is None:
Expand Down

0 comments on commit 89cca05

Please sign in to comment.