(self, value)
| 338 | super().__init__(**kwargs) |
| 339 | |
| 340 | def to_python(self, value): |
| 341 | try: |
| 342 | value = int(value) |
| 343 | except (TypeError, ValueError): |
| 344 | pass |
| 345 | return value |
| 346 | |
| 347 | def validate(self, value): |
| 348 | try: |
no outgoing calls
no test coverage detected