Skip to content
This repository has been archived by the owner on Aug 9, 2023. It is now read-only.

Commit

Permalink
change imports from ufoLib to fontTools.ufoLib
Browse files Browse the repository at this point in the history
  • Loading branch information
anthrotype committed Nov 1, 2018
1 parent c799104 commit 3543e4f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Lib/cu2qu/pens.py
Expand Up @@ -2,8 +2,8 @@
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):
Expand Down
2 changes: 1 addition & 1 deletion tests/__init__.py
@@ -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')
Expand Down
2 changes: 1 addition & 1 deletion tests/utils.py
@@ -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

Expand Down

0 comments on commit 3543e4f

Please sign in to comment.