(
self: TimeField[datetime.time],
auto_now: bool = False,
auto_now_add: bool = False,
*,
null: Literal[False] = False,
**kwargs: Any,
)
| 569 | |
| 570 | @overload |
| 571 | def __init__( |
| 572 | self: TimeField[datetime.time], |
| 573 | auto_now: bool = False, |
| 574 | auto_now_add: bool = False, |
| 575 | *, |
| 576 | null: Literal[False] = False, |
| 577 | **kwargs: Any, |
| 578 | ) -> None: ... |
| 579 | |
| 580 | @overload |
| 581 | def __init__( |
nothing calls this directly
no test coverage detected