Skip to content

Commit

Permalink
Minor fix for types
Browse files Browse the repository at this point in the history
  • Loading branch information
viblo committed Sep 17, 2024
1 parent 8e36f3e commit 60c0e72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pymunk/contact_point_set.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def __repr__(self) -> str:
return "ContactPointSet(normal={}, points={})".format(self.normal, self.points)

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

points = []
Expand Down

0 comments on commit 60c0e72

Please sign in to comment.