diff --git a/point.py b/point.py index d57142a..9e23b56 100644 --- a/point.py +++ b/point.py @@ -10,9 +10,6 @@ class Point(QtCore.QPoint): Point of coordinates (x, y) """ - def __init__(self, x, y): - super().__init__(x, y) - def __add__(self, o): return Point(self.x() + o.x(), self.y() + o.y())