feat: add comprehensive GitHub workflow and development tools
This commit is contained in:
30
app/.venv/Lib/site-packages/fontTools/ttLib/__init__.py
Normal file
30
app/.venv/Lib/site-packages/fontTools/ttLib/__init__.py
Normal file
@@ -0,0 +1,30 @@
|
||||
"""fontTools.ttLib -- a package for dealing with TrueType fonts."""
|
||||
|
||||
from fontTools.config import OPTIONS
|
||||
from fontTools.misc.loggingTools import deprecateFunction
|
||||
import logging
|
||||
|
||||
|
||||
log = logging.getLogger(__name__)
|
||||
|
||||
|
||||
OPTIMIZE_FONT_SPEED = OPTIONS["fontTools.ttLib:OPTIMIZE_FONT_SPEED"]
|
||||
|
||||
|
||||
class TTLibError(Exception):
|
||||
pass
|
||||
|
||||
|
||||
class TTLibFileIsCollectionError(TTLibError):
|
||||
pass
|
||||
|
||||
|
||||
@deprecateFunction("use logging instead", category=DeprecationWarning)
|
||||
def debugmsg(msg):
|
||||
import time
|
||||
|
||||
print(msg + time.strftime(" (%H:%M:%S)", time.localtime(time.time())))
|
||||
|
||||
|
||||
from fontTools.ttLib.ttFont import *
|
||||
from fontTools.ttLib.ttCollection import TTCollection
|
||||
Reference in New Issue
Block a user