/
niceSOFT
/
python3-hatchling
Обзор
Документация
Войти
/
niceSOFT
/
python3-hatchling
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
backend/src/hatchling/version/scheme/plugin/hooks.py
14 строк
376 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.scheme.standard import StandardScheme if TYPE_CHECKING: from hatchling.version.scheme.plugin.interface import VersionSchemeInterface @hookimpl def hatch_register_version_scheme() -> type[VersionSchemeInterface]: return StandardScheme