/
niceSOFT
/
python3-hatchling
Обзор
Документация
Войти
/
niceSOFT
/
python3-hatchling
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
backend/src/hatchling/version/source/plugin/hooks.py
16 строк
502 B
chaojie
Add type-hints for hatchling/version part (#617)
25 ноя 2022, 08:39
Не верифицирован
25 ноя 2022, 08:39
973f332
Код
Авторство
О чём код?
from __future__ import annotations from typing import TYPE_CHECKING from hatchling.plugin import hookimpl from hatchling.version.source.code import CodeSource from hatchling.version.source.env import EnvSource from hatchling.version.source.regex import RegexSource if TYPE_CHECKING: from hatchling.version.source.plugin.interface import VersionSourceInterface @hookimpl def hatch_register_version_source() -> list[type[VersionSourceInterface]]: return [CodeSource, EnvSource, RegexSource]