Skip to content

Commit ec03845

Browse files
committed
Run black.
1 parent 0f687cf commit ec03845

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Tools/check-c-api-docs/main.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,11 @@
3838
_CPYTHON = Path(__file__).parent.parent.parent
3939
INCLUDE = _CPYTHON / "Include"
4040
C_API_DOCS = _CPYTHON / "Doc" / "c-api"
41-
IGNORED = (_CPYTHON / "Tools" / "check-c-api-docs" / "ignored_c_api.txt").read_text().split("\n")
41+
IGNORED = (
42+
(_CPYTHON / "Tools" / "check-c-api-docs" / "ignored_c_api.txt")
43+
.read_text()
44+
.split("\n")
45+
)
4246

4347
for index, line in enumerate(IGNORED):
4448
if line.startswith("#"):

0 commit comments

Comments
 (0)