Skip to content

Commit

Permalink
Exclude file that Black can't parse (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
JelleZijlstra committed Mar 9, 2024
1 parent 9e51694 commit 6040bdf
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/diff_shades/config.py
Expand Up @@ -62,7 +62,12 @@ def supported_by_runtime(self) -> bool:
Project("pyanalyze", "https://github.com/quora/pyanalyze.git"),
Project("pyramid", "https://github.com/Pylons/pyramid.git"),
Project("pytest", "https://github.com/pytest-dev/pytest.git"),
Project("scikit-lego", "https://github.com/koaning/scikit-lego.git"),
Project(
"scikit-lego",
"https://github.com/koaning/scikit-lego.git",
# Uses Python 3.12+ f-string syntax, not yet supported by Black
custom_arguments=["--extend-exclude", "/docs/_scripts/feature-selection.py"],
),
Project("sqlalchemy", "https://github.com/sqlalchemy/sqlalchemy.git"),
Project("tox", "https://github.com/tox-dev/tox.git"),
Project("typeshed", "https://github.com/python/typeshed.git"),
Expand Down

0 comments on commit 6040bdf

Please sign in to comment.