Skip to content

Commit

Permalink
fix mypy in Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
coszio committed Aug 29, 2024
1 parent 52dc829 commit 12dc515
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion qdrant_client/local/local_collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
Tuple,
Union,
get_args,
Set,
)
from copy import deepcopy

Expand Down Expand Up @@ -1112,7 +1113,7 @@ def facet(
continue

# Only count the same value for each point once
values_set: set[types.FacetValue] = set()
values_set: Set[types.FacetValue] = set()

# Sanitize to use only valid values
for v in values:
Expand Down

0 comments on commit 12dc515

Please sign in to comment.