diff options
Diffstat (limited to 'sources/pyside6/tests/QtWidgets/bug_243.py')
| -rw-r--r-- | sources/pyside6/tests/QtWidgets/bug_243.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside6/tests/QtWidgets/bug_243.py b/sources/pyside6/tests/QtWidgets/bug_243.py index 7987be96e..533dfc450 100644 --- a/sources/pyside6/tests/QtWidgets/bug_243.py +++ b/sources/pyside6/tests/QtWidgets/bug_243.py @@ -19,7 +19,7 @@ from PySide6.QtWidgets import QApplication, QMainWindow, QLayout class QAppPresence(unittest.TestCase): def testBug(self): - app = QApplication(sys.argv) + app = QApplication(sys.argv) # noqa: F841 window = QMainWindow() l = window.layout() self.assertTrue(isinstance(l, QLayout)) |
