DEBSOURCES
Skip Quicknav
sources / mkdocstrings / 1.0.0-1 / tests / fixtures / string_annotation.py
12345678
from typing import Literal class Foo: @property def foo() -> Literal["hi"]: "hi" return "hi"