diff options
Diffstat (limited to 'sources/pyside6/tests/QtWidgets/bug_667.py')
| -rw-r--r-- | sources/pyside6/tests/QtWidgets/bug_667.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside6/tests/QtWidgets/bug_667.py b/sources/pyside6/tests/QtWidgets/bug_667.py index 414b3d829..be6700d83 100644 --- a/sources/pyside6/tests/QtWidgets/bug_667.py +++ b/sources/pyside6/tests/QtWidgets/bug_667.py @@ -17,7 +17,7 @@ from PySide6.QtWidgets import QApplication, QGraphicsView, QGraphicsScene, QGrap class Ball(QGraphicsEllipseItem): def __init__(self, d, parent=None): super().__init__(0, 0, d, d, parent) - self.vel = QPointF(0, 0) #commenting this out prevents the crash + self.vel = QPointF(0, 0) # commenting this out prevents the crash class Foo(QGraphicsView): |
