aboutsummaryrefslogtreecommitdiff
path: root/Lib/fontTools/feaLib/lookupDebugInfo.py
blob: 3b711f64f3a8e7b0220726e47600e5eb87149437 (plain)
1
2
3
4
5
6
7
8
9
10
from typing import NamedTuple

LOOKUP_DEBUG_INFO_KEY = "com.github.fonttools.feaLib"

class LookupDebugInfo(NamedTuple):
    """Information about where a lookup came from, to be embedded in a font"""

    location: str
    name: str
    feature: list