diff options
| author | Friedemann Kleint <Friedemann.Kleint@qt.io> | 2024-12-13 10:12:30 +0100 |
|---|---|---|
| committer | Friedemann Kleint <Friedemann.Kleint@qt.io> | 2024-12-17 16:37:15 +0100 |
| commit | 45548b18a9e73012521a7b16a234e9689da0d9ab (patch) | |
| tree | 8f20adad674393e8564e4682bb5d0cc5dd444b26 /sources/pyside6/tests/QtUiTools/uiloader_test.py | |
| parent | dc41b6a9fb736bb0b6e86470c3d3d016fa88711a (diff) | |
Fix some flake8 errors in tests/examples
As unearthed by the whitespace change.
Pick-to: 6.8
Change-Id: I58c1a38c3c4a9c91719131d7950950ddf475872b
Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
Diffstat (limited to 'sources/pyside6/tests/QtUiTools/uiloader_test.py')
| -rw-r--r-- | sources/pyside6/tests/QtUiTools/uiloader_test.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sources/pyside6/tests/QtUiTools/uiloader_test.py b/sources/pyside6/tests/QtUiTools/uiloader_test.py index 4f58bef73..c1bcf0e81 100644 --- a/sources/pyside6/tests/QtUiTools/uiloader_test.py +++ b/sources/pyside6/tests/QtUiTools/uiloader_test.py @@ -41,7 +41,8 @@ class QUiLoaderTester(UsesQApplication): child = w.findChild(QWidget, "child_object") self.assertNotEqual(child, None) - self.assertEqual(w.findChild(QWidget, "grandson_object"), child.findChild(QWidget, "grandson_object")) + self.assertEqual(w.findChild(QWidget, "grandson_object"), + child.findChild(QWidget, "grandson_object")) def testLoadFileOverride(self): # PYSIDE-1070, override QUiLoader::createWidget() with parent=None crashes |
