/
githubmirror
/
nbs
Обзор
Документация
Войти
/
githubmirror
/
nbs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
contrib/python/fonttools/fontTools/feaLib/location.py
12 строк
234 B
Anton Myagkov
Update ydb version to 24.4 (#4579)
07 фев 2026, 11:59
Не верифицирован
07 фев 2026, 11:59
2c21cae
Код
Авторство
О чём код?
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}"