change imports from ufoLib to fontTools.ufoLib

This commit is contained in:
Cosimo Lupo 2018-11-01 16:41:08 +00:00
parent c7991047ba
commit 3543e4f24e
No known key found for this signature in database
GPG Key ID: 59D54DB0C9976482
3 changed files with 4 additions and 4 deletions

View File

@ -2,8 +2,8 @@ from __future__ import print_function, division, absolute_import
from cu2qu import curve_to_quadratic
from fontTools.pens.basePen import AbstractPen, decomposeSuperBezierSegment
from fontTools.pens.reverseContourPen import ReverseContourPen
from ufoLib.pointPen import BasePointToSegmentPen
from ufoLib.pointPen import ReverseContourPointPen
from fontTools.pens.pointPen import BasePointToSegmentPen
from fontTools.pens.pointPen import ReverseContourPointPen
class Cu2QuPen(AbstractPen):

View File

@ -1,5 +1,5 @@
import os
from ufoLib.glifLib import GlyphSet
from fontTools.ufoLib.glifLib import GlyphSet
import pkg_resources
DATADIR = os.path.join(os.path.dirname(__file__), 'data')

View File

@ -1,6 +1,6 @@
from __future__ import print_function, division, absolute_import
from . import CUBIC_GLYPHS
from ufoLib.pointPen import PointToSegmentPen, SegmentToPointPen
from fontTools.pens.pointPen import PointToSegmentPen, SegmentToPointPen
from fontTools.misc.py23 import isclose
import unittest