Skip to content

Commit

Permalink
Fix ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
binste committed May 5, 2024
1 parent 817e30b commit b2dc401
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/generate_schema_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@ def generate_vegalite_schema_wrapper(schema_file: str) -> str:
# precedent in the generated __init__.py file one level up where core.py
# and channels.py are imported. Importing both confuses type checkers.
all_ = [
c for c in definitions if not c.startswith("_") and not c in ("Color", "Text")
c for c in definitions if not c.startswith("_") and c not in ("Color", "Text")
] + [
"Root",
"VegaLiteSchema",
Expand Down

0 comments on commit b2dc401

Please sign in to comment.