aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtWidgets/bug_967.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/QtWidgets/bug_967.py')
-rw-r--r--sources/pyside6/tests/QtWidgets/bug_967.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside6/tests/QtWidgets/bug_967.py b/sources/pyside6/tests/QtWidgets/bug_967.py
index d254f2877..0923e5d1a 100644
--- a/sources/pyside6/tests/QtWidgets/bug_967.py
+++ b/sources/pyside6/tests/QtWidgets/bug_967.py
@@ -21,7 +21,7 @@ class TestBug967 (unittest.TestCase):
def testIt(self):
self.arg = None
- app = QApplication([])
+ app = QApplication([]) # noqa: F841
obj = QComboBox()
obj.currentIndexChanged.connect(self.callback)
obj.currentIndexChanged.emit(5)