Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6b291cb

Browse files
committedDec 18, 2024·
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 1de683e commit 6b291cb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎qtpy/tests/test_qtwebenginewidgets.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515
@pytest.mark.skipif(
1616
not (
1717
(PYQT6 and _parse_version(PYQT_VERSION) >= _parse_version("6.2"))
18-
or (PYSIDE6 and _parse_version(PYSIDE_VERSION) >= _parse_version("6.2"))
18+
or (
19+
PYSIDE6 and _parse_version(PYSIDE_VERSION) >= _parse_version("6.2")
20+
)
1921
or PYQT5
2022
or PYSIDE2
2123
),

0 commit comments

Comments
 (0)
Please sign in to comment.