Untitled

Anonymous
plain_text
09/18/2023 11:23 AM
488 B
12
Indexable
class StringUUID(fields.UUID):
    def _validated(self, value) -> typing.Optional[str]:
        response = super()._validated(value)
        return str(response) if response else Noneclass StringUUID(fields.UUID):
    def _validated(self, value) -> typing.Optional[str]:
        response = super()._validated(value)
        return str(response) if response else None
Editor is loading...