aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/tests/QtWidgets/bug_668.py
diff options
context:
space:
mode:
Diffstat (limited to 'sources/pyside6/tests/QtWidgets/bug_668.py')
-rw-r--r--sources/pyside6/tests/QtWidgets/bug_668.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside6/tests/QtWidgets/bug_668.py b/sources/pyside6/tests/QtWidgets/bug_668.py
index 0b2de8f04..fba0789ca 100644
--- a/sources/pyside6/tests/QtWidgets/bug_668.py
+++ b/sources/pyside6/tests/QtWidgets/bug_668.py
@@ -25,7 +25,7 @@ class A(QMainWindow):
v.setModel(a)
self.setCentralWidget(v)
# Test index() method (see PYSIDE-570, PYSIDE-331)
- index = a.index(0, 0, QModelIndex())
+ index = a.index(0, 0, QModelIndex()) # noqa: F841
app = QApplication([])