This commit is contained in:
Behdad Esfahbod 2023-12-17 12:07:12 -07:00
parent 272f73632a
commit 38d190a3cc

View File

@ -37,7 +37,13 @@ class SVGPathPen(BasePen):
print(tpen.getCommands())
"""
def __init__(self, glyphSet, ntos: Callable[[float], str] = (lambda x: ("%.2f" % x) if x != int(x) else str(int(x)))):
def __init__(
self,
glyphSet,
ntos: Callable[[float], str] = (
lambda x: ("%.2f" % x) if x != int(x) else str(int(x))
),
):
BasePen.__init__(self, glyphSet)
self._commands = []
self._lastCommand = None