Skip to content

Commit 60c0e72

Browse files
committed
Minor fix for types
1 parent 8e36f3e commit 60c0e72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymunk/contact_point_set.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def __repr__(self) -> str:
6565
return "ContactPointSet(normal={}, points={})".format(self.normal, self.points)
6666

6767
@classmethod
68-
def _from_cp(cls, _points: ffi.CData) -> "ContactPointSet":
68+
def _from_cp(cls, _points: "ffi.CData") -> "ContactPointSet":
6969
normal = Vec2d(_points.normal.x, _points.normal.y)
7070

7171
points = []

0 commit comments

Comments
 (0)