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_693.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_693.py')
-rw-r--r-- | sources/pyside6/tests/QtWidgets/bug_693.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/pyside6/tests/QtWidgets/bug_693.py b/sources/pyside6/tests/QtWidgets/bug_693.py index 4d687509c..9f5b0f068 100644 --- a/sources/pyside6/tests/QtWidgets/bug_693.py +++ b/sources/pyside6/tests/QtWidgets/bug_693.py @@ -35,8 +35,8 @@ sys.path.append(os.fspath(Path(__file__).resolve().parents[1])) from init_paths import init_test_paths init_test_paths(False) -from PySide6.QtCore import * -from PySide6.QtWidgets import * +from PySide6.QtCore import QAbstractListModel, QLine +from PySide6.QtWidgets import QApplication, QListView class MyModel (QAbstractListModel): |