(self, s: str)
| 2773 | return _validate_bounds(self, obj, value) # type:ignore[no-any-return] |
| 2774 | |
| 2775 | def from_string(self, s: str) -> G: |
| 2776 | if self.allow_none and s == "None": |
| 2777 | return None # type:ignore[return-value] |
| 2778 | return float(s) # type:ignore[return-value] |
| 2779 | |
| 2780 | def subclass_init(self, cls: type[t.Any]) -> None: |
| 2781 | pass # fully opt out of instance_init |
nothing calls this directly
no outgoing calls
no test coverage detected