(self, value: typing.Any)
| 1029 | |
| 1030 | # override Number |
| 1031 | def _validated(self, value: typing.Any) -> int: |
| 1032 | if self.strict and not isinstance(value, numbers.Integral): |
| 1033 | raise self.make_error("invalid", input=value) |
| 1034 | return super()._validated(value) |
| 1035 | |
| 1036 | |
| 1037 | class Float(Number[float]): |
nothing calls this directly
no test coverage detected