Skip to content

Commit

Permalink
Fix typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
knutnergaard committed Nov 27, 2024
1 parent ee4d50d commit b4199f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Lib/fontParts/base/contour.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ def getIdentifierForPoint(self, point: BasePoint) -> str:
"""
point = normalizers.normalizePoint(point)
return self._getIdentifierforPoint(point)
return self._getIdentifierForPoint(point)

def _getIdentifierForPoint(self, point: BasePoint) -> str:
"""Generate and assign a unique identifier to the given native point.
Expand Down Expand Up @@ -476,7 +476,7 @@ def _transformBy(

compatibilityReporterClass = ContourCompatibilityReporter

def isCompatible(self, other: BaseContour) -> tuple[bool, str]:
def isCompatible(self, other: BaseContour) -> Tuple[bool, str]:
"""Evaluate interpolation compatibility with another contour.
:param other: The other :class:`BaseContour` instance to check
Expand Down

0 comments on commit b4199f2

Please sign in to comment.