Skip to content

Commit

Permalink
[MNT] convert black extend-exclude parameter to single string (#207)
Browse files Browse the repository at this point in the history
In #205, `pre-commit` CI seems to
complain that the `extend-exclude` parameter is not followed by a string
(but a list of strings).

Attempting to fix this by changing the list of strings into a single
string tha should hopefully comply with the expected syntax.
  • Loading branch information
fkiraly authored Jul 13, 2023
1 parent 34e8679 commit 1722ec5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ known_first_party = ["skbase"]

[tool.black]
line-length = 88
extend-exclude = ["^/setup.py", "docs/conf.py"]
extend-exclude = "^/setup.py docs/conf.py"

[tool.pydocstyle]
convention = "numpy"
Expand Down

0 comments on commit 1722ec5

Please sign in to comment.