ajout fichiers manquant
This commit is contained in:
12
venv/Lib/site-packages/fontTools/feaLib/location.py
Normal file
12
venv/Lib/site-packages/fontTools/feaLib/location.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from typing import NamedTuple
|
||||
|
||||
|
||||
class FeatureLibLocation(NamedTuple):
|
||||
"""A location in a feature file"""
|
||||
|
||||
file: str
|
||||
line: int
|
||||
column: int
|
||||
|
||||
def __str__(self):
|
||||
return f"{self.file}:{self.line}:{self.column}"
|
Reference in New Issue
Block a user