(self, name, value, attrs)
| 686 | return str(value) |
| 687 | |
| 688 | def get_context(self, name, value, attrs): |
| 689 | if self.check_test(value): |
| 690 | attrs = {**(attrs or {}), "checked": True} |
| 691 | return super().get_context(name, value, attrs) |
| 692 | |
| 693 | def value_from_datadict(self, data, files, name): |
| 694 | if name not in data: |
nothing calls this directly
no test coverage detected