diff options
| author | Friedemann Kleint <Friedemann.Kleint@qt.io> | 2021-04-29 11:18:49 +0200 |
|---|---|---|
| committer | Friedemann Kleint <Friedemann.Kleint@qt.io> | 2021-04-29 15:56:58 +0200 |
| commit | 6d2af409eedee377b3c2ba0cd8156b9409fabd9d (patch) | |
| tree | 660f8fd87f77c1030cf97cc65345b9a941a321e4 /sources/pyside6/tests/QtWidgets/qstyle_test.py | |
| parent | 88fff87519e741a3a999b8c1545834d116859faa (diff) | |
Tests: Fix some space-related flake8 warnings
Change-Id: I9b0ad08839bf1246620c557ec304dfa90882907b
Reviewed-by: Christian Tismer <tismer@stackless.com>
Diffstat (limited to 'sources/pyside6/tests/QtWidgets/qstyle_test.py')
| -rw-r--r-- | sources/pyside6/tests/QtWidgets/qstyle_test.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sources/pyside6/tests/QtWidgets/qstyle_test.py b/sources/pyside6/tests/QtWidgets/qstyle_test.py index 1b0208a62..6993e8b90 100644 --- a/sources/pyside6/tests/QtWidgets/qstyle_test.py +++ b/sources/pyside6/tests/QtWidgets/qstyle_test.py @@ -42,6 +42,7 @@ from PySide6.QtGui import QWindow from PySide6.QtWidgets import (QApplication, QFontComboBox, QLabel, QProxyStyle, QStyleFactory, QWidget) + class ProxyStyle(QProxyStyle): def __init__(self, style): @@ -84,7 +85,7 @@ class SetStyleTest(UsesQApplication): label.setStyle(proxyStyle) label.show() while not label.windowHandle().isExposed(): - QApplication.instance().processEvents() + QApplication.instance().processEvents() self.assertTrue(proxyStyle.polished > 0) def testSetStyleOwnership(self): |
