aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtWidgets/bug_546.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/QtWidgets/bug_546.py')
-rw-r--r--sources/pyside6/tests/QtWidgets/bug_546.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside6/tests/QtWidgets/bug_546.py b/sources/pyside6/tests/QtWidgets/bug_546.py
index c5e054c3f..9bcd9d40c 100644
--- a/sources/pyside6/tests/QtWidgets/bug_546.py
+++ b/sources/pyside6/tests/QtWidgets/bug_546.py
@@ -18,7 +18,7 @@ class TestBug546(unittest.TestCase):
"""Test to check a crash at exit"""
def testIt(self):
- app = QApplication([])
+ app = QApplication([]) # noqa: F841
textEdit = QPlainTextEdit()
completer = QCompleter(("foo", "bar"), textEdit)
completer.setWidget(textEdit)