Skip to content

Commit 4eebc66

Browse files
style: pre-commit fixes
1 parent 2fd76fb commit 4eebc66

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

tests/extra_python_package/test_files.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -232,8 +232,9 @@ def tests_build_wheel(monkeypatch, tmpdir):
232232
names = z.namelist()
233233
share = zipfile.Path(z, "pybind11/share")
234234
pkgconfig = (share / "pkgconfig/pybind11.pc").read_text(encoding="utf-8")
235-
cmakeconfig = (share / "cmake/pybind11/pybind11Config.cmake").read_text(encoding="utf-8")
236-
235+
cmakeconfig = (share / "cmake/pybind11/pybind11Config.cmake").read_text(
236+
encoding="utf-8"
237+
)
237238

238239
trimmed = {n for n in names if "dist-info" not in n}
239240
trimmed |= {f"dist-info/{n.split('/', 1)[-1]}" for n in names if "dist-info" in n}
@@ -273,7 +274,9 @@ def tests_build_global_wheel(monkeypatch, tmpdir):
273274

274275
share = zipfile.Path(z, f"{beginning}.data/data/share")
275276
pkgconfig = (share / "pkgconfig/pybind11.pc").read_text(encoding="utf-8")
276-
cmakeconfig = (share / "cmake/pybind11/pybind11Config.cmake").read_text(encoding="utf-8")
277+
cmakeconfig = (share / "cmake/pybind11/pybind11Config.cmake").read_text(
278+
encoding="utf-8"
279+
)
277280

278281
trimmed = {n[len(beginning) + 1 :] for n in names}
279282

0 commit comments

Comments
 (0)