cu2qu: remove from __future__ imports

This commit is contained in:
Cosimo Lupo 2020-03-31 13:38:51 +01:00
parent 00058833f2
commit c2e8403937
No known key found for this signature in database
GPG Key ID: 179A8F0895A02F4F
6 changed files with 0 additions and 11 deletions

View File

@ -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:

View File

@ -1,5 +1,3 @@
from __future__ import print_function, absolute_import, division
class Error(Exception):
"""Base Cu2Qu exception class for all other errors."""

View File

@ -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

View File

@ -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

View File

@ -1,4 +1,3 @@
from __future__ import print_function, division, absolute_import
import unittest
from fontTools.pens.cu2quPen import Cu2QuPen, Cu2QuPointPen

View File

@ -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