Skip to content

Commit

Permalink
Merge pull request #1319 from tibor-reiss/fix-1275-is-safe
Browse files Browse the repository at this point in the history
fix: add is_safe to _WeaviateUUIDInt
  • Loading branch information
dirkkul committed Sep 26, 2024
2 parents e75cb29 + 3803ade commit a055359
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions weaviate/collections/queries/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
class _WeaviateUUIDInt(uuid_lib.UUID):
def __init__(self, hex_: int) -> None:
object.__setattr__(self, "int", hex_)
object.__setattr__(self, "is_safe", uuid_lib.SafeUUID.unknown)


class _Base(Generic[Properties, References]):
Expand Down

0 comments on commit a055359

Please sign in to comment.