We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e36f3e commit 60c0e72Copy full SHA for 60c0e72
pymunk/contact_point_set.py
@@ -65,7 +65,7 @@ def __repr__(self) -> str:
65
return "ContactPointSet(normal={}, points={})".format(self.normal, self.points)
66
67
@classmethod
68
- def _from_cp(cls, _points: ffi.CData) -> "ContactPointSet":
+ def _from_cp(cls, _points: "ffi.CData") -> "ContactPointSet":
69
normal = Vec2d(_points.normal.x, _points.normal.y)
70
71
points = []
0 commit comments