Skip to content

Commit

Permalink
Fixed return type for to_readable_str.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandervsokol committed Sep 25, 2024
1 parent dc96687 commit 45a13bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cl/runtime/primitive/ordered_uuid.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 45a13bd

Please sign in to comment.