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_728.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_728.py')
-rw-r--r-- | sources/pyside6/tests/QtWidgets/bug_728.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sources/pyside6/tests/QtWidgets/bug_728.py b/sources/pyside6/tests/QtWidgets/bug_728.py index 69b4da643..9e1473635 100644 --- a/sources/pyside6/tests/QtWidgets/bug_728.py +++ b/sources/pyside6/tests/QtWidgets/bug_728.py @@ -35,8 +35,9 @@ sys.path.append(os.fspath(Path(__file__).resolve().parents[1] / "util")) from init_paths import init_test_paths init_test_paths() -from PySide6.QtWidgets import * -from PySide6.QtCore import * +from PySide6.QtWidgets import QApplication, QDialog, QFileDialog +from PySide6.QtCore import QDir, QTimer + # Periodically check for the file dialog to appear and close it dialog = None |