(
self: Bool[bool, bool | int],
default_value: bool | Sentinel = ...,
allow_none: Literal[False] = ...,
read_only: bool | None = ...,
help: str | None = ...,
config: t.Any = ...,
**kwargs: t.Any,
)
| 3073 | |
| 3074 | @t.overload |
| 3075 | def __init__( |
| 3076 | self: Bool[bool, bool | int], |
| 3077 | default_value: bool | Sentinel = ..., |
| 3078 | allow_none: Literal[False] = ..., |
| 3079 | read_only: bool | None = ..., |
| 3080 | help: str | None = ..., |
| 3081 | config: t.Any = ..., |
| 3082 | **kwargs: t.Any, |
| 3083 | ) -> None: |
| 3084 | ... |
| 3085 | |
| 3086 | @t.overload |
| 3087 | def __init__( |
nothing calls this directly
no outgoing calls
no test coverage detected