aboutsummaryrefslogtreecommitdiff
path: root/Lib/fontTools/cffLib/width.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/fontTools/cffLib/width.py')
-rw-r--r--Lib/fontTools/cffLib/width.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/fontTools/cffLib/width.py b/Lib/fontTools/cffLib/width.py
index edce446f..00b859bb 100644
--- a/Lib/fontTools/cffLib/width.py
+++ b/Lib/fontTools/cffLib/width.py
@@ -7,11 +7,10 @@ value do not need to specify their width in their charstring, saving bytes.
This module determines the optimum ``defaultWidthX`` and ``nominalWidthX``
values for a font, when provided with a list of glyph widths."""
-from fontTools.misc.py23 import *
-from fontTools.ttLib import TTFont, getTableClass
+from fontTools.ttLib import TTFont
from collections import defaultdict
from operator import add
-from functools import partial, reduce
+from functools import reduce
class missingdict(dict):