diff --git a/Lib/fontTools/cu2qu/cu2qu.py b/Lib/fontTools/cu2qu/cu2qu.py index 501176c8c..4ee695171 100644 --- a/Lib/fontTools/cu2qu/cu2qu.py +++ b/Lib/fontTools/cu2qu/cu2qu.py @@ -15,9 +15,6 @@ # See the License for the specific language governing permissions and # limitations under the License. - -from __future__ import print_function, division, absolute_import - try: import cython except ImportError: diff --git a/Lib/fontTools/cu2qu/errors.py b/Lib/fontTools/cu2qu/errors.py index 6a8ccdb73..317b5d734 100644 --- a/Lib/fontTools/cu2qu/errors.py +++ b/Lib/fontTools/cu2qu/errors.py @@ -1,5 +1,3 @@ -from __future__ import print_function, absolute_import, division - class Error(Exception): """Base Cu2Qu exception class for all other errors.""" diff --git a/Lib/fontTools/pens/cu2quPen.py b/Lib/fontTools/pens/cu2quPen.py index e8b6bc44d..43898caac 100644 --- a/Lib/fontTools/pens/cu2quPen.py +++ b/Lib/fontTools/pens/cu2quPen.py @@ -1,4 +1,3 @@ -from __future__ import print_function, division, absolute_import from fontTools.cu2qu import curve_to_quadratic from fontTools.pens.basePen import AbstractPen, decomposeSuperBezierSegment from fontTools.pens.reverseContourPen import ReverseContourPen diff --git a/Tests/cu2qu/cu2qu_test.py b/Tests/cu2qu/cu2qu_test.py index f659278f1..456d2103e 100644 --- a/Tests/cu2qu/cu2qu_test.py +++ b/Tests/cu2qu/cu2qu_test.py @@ -12,9 +12,6 @@ # See the License for the specific language governing permissions and # limitations under the License. - -from __future__ import print_function, division, absolute_import - import collections import math import unittest diff --git a/Tests/pens/cu2quPen_test.py b/Tests/pens/cu2quPen_test.py index fcadcdb95..0df82bc28 100644 --- a/Tests/pens/cu2quPen_test.py +++ b/Tests/pens/cu2quPen_test.py @@ -1,4 +1,3 @@ -from __future__ import print_function, division, absolute_import import unittest from fontTools.pens.cu2quPen import Cu2QuPen, Cu2QuPointPen diff --git a/Tests/pens/utils.py b/Tests/pens/utils.py index b0d6c1194..c566c424e 100644 --- a/Tests/pens/utils.py +++ b/Tests/pens/utils.py @@ -1,4 +1,3 @@ -from __future__ import print_function, division, absolute_import from . import CUBIC_GLYPHS from fontTools.pens.pointPen import PointToSegmentPen, SegmentToPointPen from fontTools.misc.py23 import isclose