(
self: Unicode[str, str | bytes],
default_value: str | Sentinel = ...,
allow_none: Literal[False] = ...,
read_only: bool | None = ...,
help: str | None = ...,
config: t.Any = ...,
**kwargs: t.Any,
)
| 2917 | |
| 2918 | @t.overload |
| 2919 | def __init__( |
| 2920 | self: Unicode[str, str | bytes], |
| 2921 | default_value: str | Sentinel = ..., |
| 2922 | allow_none: Literal[False] = ..., |
| 2923 | read_only: bool | None = ..., |
| 2924 | help: str | None = ..., |
| 2925 | config: t.Any = ..., |
| 2926 | **kwargs: t.Any, |
| 2927 | ) -> None: |
| 2928 | ... |
| 2929 | |
| 2930 | @t.overload |
| 2931 | def __init__( |
nothing calls this directly
no outgoing calls
no test coverage detected