(value)
| 693 | |
| 694 | @staticmethod |
| 695 | def _lower_if_str(value): |
| 696 | if isinstance(value, str): |
| 697 | return value.lower() |
| 698 | return value |
| 699 | |
| 700 | def to_internal_value(self, data): |
| 701 | with contextlib.suppress(TypeError): |
no outgoing calls
no test coverage detected