From 45a13bda5addd34dd5121edaae88d761571eb4e6 Mon Sep 17 00:00:00 2001 From: Alexander Sokol Date: Tue, 24 Sep 2024 21:25:18 -0400 Subject: [PATCH] Fixed return type for to_readable_str. --- cl/runtime/primitive/ordered_uuid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cl/runtime/primitive/ordered_uuid.py b/cl/runtime/primitive/ordered_uuid.py index fb7bdf29..b98c0b2e 100644 --- a/cl/runtime/primitive/ordered_uuid.py +++ b/cl/runtime/primitive/ordered_uuid.py @@ -62,7 +62,7 @@ def create_many(cls, count: int) -> Iterable[UUID]: return [cls.create_one() for _ in range(count)] @classmethod - def to_readable_str(cls, value: UUID) -> dt.datetime: + def to_readable_str(cls, value: UUID) -> str: # Validate cls.validate(value)