[iup] Remove copy/pasta

This commit is contained in:
Behdad Esfahbod 2023-09-28 12:30:10 -06:00
parent 0a3360e527
commit b14268a23c

View File

@ -15,16 +15,6 @@ from typing import (
)
from numbers import Integral, Real
try:
import cython
COMPILED = cython.compiled
except (AttributeError, ImportError):
# if cython not installed, use mock module with no-op decorators and types
from fontTools.misc import cython
COMPILED = False
_Point = Tuple[Real, Real]
_Delta = Tuple[Real, Real]