(
self: IntField[int],
primary_key: bool | None = None,
*,
null: Literal[False] = False,
**kwargs: Any,
)
| 103 | |
| 104 | @overload |
| 105 | def __init__( |
| 106 | self: IntField[int], |
| 107 | primary_key: bool | None = None, |
| 108 | *, |
| 109 | null: Literal[False] = False, |
| 110 | **kwargs: Any, |
| 111 | ) -> None: ... |
| 112 | |
| 113 | @overload |
| 114 | def __init__( |
no test coverage detected