aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtWidgets/bug_653.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/QtWidgets/bug_653.py')
-rw-r--r--sources/pyside6/tests/QtWidgets/bug_653.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside6/tests/QtWidgets/bug_653.py b/sources/pyside6/tests/QtWidgets/bug_653.py
index 370e9474b..38ab0c8a6 100644
--- a/sources/pyside6/tests/QtWidgets/bug_653.py
+++ b/sources/pyside6/tests/QtWidgets/bug_653.py
@@ -17,7 +17,7 @@ from PySide6.QtWidgets import QApplication, QWizard, QWizardPage
class TestBug653(unittest.TestCase):
"""Crash after calling QWizardPage.wizard()"""
def testIt(self):
- app = QApplication([])
+ app = QApplication([]) # noqa: F841
wizard = QWizard()
page = QWizardPage()