Spaces:
Running
Running
File size: 156 Bytes
27fd333 |
1 2 3 4 5 6 7 8 9 10 |
import uuid
def is_valid_uuid(uuid_str: str) -> bool:
try:
uuid.UUID(uuid_str)
return True
except Exception:
return False
|