(self, value: Any)
| 690 | """ |
| 691 | |
| 692 | def parse_id(self, value: Any) -> uuid.UUID: |
| 693 | if isinstance(value, uuid.UUID): |
| 694 | return value |
| 695 | try: |
| 696 | return uuid.UUID(value) |
| 697 | except ValueError as e: |
| 698 | raise exceptions.InvalidID() from e |
| 699 | |
| 700 | |
| 701 | class IntegerIDMixin: |
no outgoing calls