Skip to content

Commit 620a3de

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 4760b13 commit 620a3de

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tests/test_wait_signal.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -1372,7 +1372,8 @@ def test_signal_raised_from_thread(pytester: pytest.Pytester) -> None:
13721372
Extracted from https://github.com/pytest-dev/pytest-qt/issues/586
13731373
"""
13741374
count = 500 # hopefully enough to trigger the bug reliably
1375-
pytester.makepyfile(f"""
1375+
pytester.makepyfile(
1376+
f"""
13761377
import pytest
13771378
from pytestqt.qt_compat import qt_api
13781379
@@ -1394,7 +1395,8 @@ def test_thread(qtbot, _):
13941395
finally:
13951396
thread.quit()
13961397
thread.wait()
1397-
""")
1398+
"""
1399+
)
13981400

13991401
res = pytester.runpytest_subprocess()
14001402
res.assert_outcomes(passed=count)

0 commit comments

Comments
 (0)