in case later on we want to add things to svgLib which don't have to do with paths specifically
7 lines
175 B
Python
7 lines
175 B
Python
from __future__ import print_function, division, absolute_import
|
|
from fontTools.misc.py23 import *
|
|
|
|
from .path import SVGPath, parse_path
|
|
|
|
__all__ = ["SVGPath", "parse_path"]
|