(
self: DecimalField[Decimal],
max_digits: int,
decimal_places: int,
*,
null: Literal[False] = False,
**kwargs: Any,
)
| 352 | |
| 353 | @overload |
| 354 | def __init__( |
| 355 | self: DecimalField[Decimal], |
| 356 | max_digits: int, |
| 357 | decimal_places: int, |
| 358 | *, |
| 359 | null: Literal[False] = False, |
| 360 | **kwargs: Any, |
| 361 | ) -> None: ... |
| 362 | |
| 363 | @overload |
| 364 | def __init__( |
nothing calls this directly
no test coverage detected