Source code for pyappconf.encoding.general from typing_extensions import Protocol [docs]class HasStr(Protocol): def __str__(self) -> str: ...