MCPcopy Create free account
hub / github.com/tortoise/tortoise-orm / __init__

Method __init__

tortoise/validators.py:94–96  ·  view source on GitHub ↗
(self, max_value: int | float | Decimal)

Source from the content-addressed store, hash-verified

92 """
93
94 def __init__(self, max_value: int | float | Decimal) -> None:
95 self._validate_type(max_value)
96 self.max_value = max_value
97
98 def __call__(self, value: int | float | Decimal) -> None:
99 self._validate_type(value)

Callers

nothing calls this directly

Calls 1

_validate_typeMethod · 0.80

Tested by

no test coverage detected