(cls, value: Any)
| 614 | |
| 615 | @classmethod |
| 616 | def _coerce_value(cls, value: Any) -> Any: |
| 617 | if value is None or cls.is_true(value): |
| 618 | return value |
| 619 | return cls._coerce_items(value) |
| 620 | |
| 621 | @staticmethod |
| 622 | def is_true(v: Any) -> bool: |
no test coverage detected