fonttools/Lib/fontTools/feaLib/lookupDebugInfo.py

11 lines
251 B
Python
Raw Normal View History

2020-09-09 19:56:05 +01:00
from typing import NamedTuple
LOOKUP_DEBUG_INFO_KEY = "com.github.fonttools.feaLib"
2020-09-09 19:56:05 +01:00
class LookupDebugInfo(NamedTuple):
"""Information about where a lookup came from, to be embedded in a font"""
location: str
name: str
feature: list