diff options
author | Friedemann Kleint <[email protected]> | 2021-04-26 16:28:53 +0200 |
---|---|---|
committer | Friedemann Kleint <[email protected]> | 2021-04-27 15:30:14 +0200 |
commit | 04cc9e12f38aa4dcf2b33524f1775bf2b659ca5f (patch) | |
tree | 655d77d76f099b9641ecc285479023e573e18450 /sources/pyside6/tests/QtWidgets/bug_512.py | |
parent | 653f8c8272f3e29c784173ebd98175bc843ee3a4 (diff) |
Tests: Fix star imports
Change-Id: If4e1d64af662b1802f2f748121bda5488a82235a
Reviewed-by: Christian Tismer <[email protected]>
Diffstat (limited to 'sources/pyside6/tests/QtWidgets/bug_512.py')
-rw-r--r-- | sources/pyside6/tests/QtWidgets/bug_512.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/pyside6/tests/QtWidgets/bug_512.py b/sources/pyside6/tests/QtWidgets/bug_512.py index 125333327..46dadfa57 100644 --- a/sources/pyside6/tests/QtWidgets/bug_512.py +++ b/sources/pyside6/tests/QtWidgets/bug_512.py @@ -38,8 +38,8 @@ from init_paths import init_test_paths init_test_paths(False) from helper.usesqapplication import UsesQApplication -from PySide6.QtCore import * -from PySide6.QtWidgets import * +from PySide6.QtWidgets import QGridLayout, QLabel, QWidget + class BugTest(UsesQApplication): def testCase(self): |