Skip to content

Commit 682fa47

Browse files
committed
Fix typing on 3.9+3.10
1 parent 1e670e8 commit 682fa47

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

  • weaviate/collections/classes

weaviate/collections/classes/grpc.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
from dataclasses import dataclass
22
from enum import Enum, auto
33
from typing import (
4-
ClassVar,
54
Dict,
65
Generic,
76
List,
@@ -15,7 +14,7 @@
1514
)
1615

1716
from pydantic import ConfigDict, Field
18-
from typing_extensions import TypeGuard, TypeVar
17+
from typing_extensions import ClassVar, TypeGuard, TypeVar
1918

2019
from weaviate.collections.classes.types import _WeaviateInput
2120
from weaviate.exceptions import WeaviateInvalidInputError

0 commit comments

Comments
 (0)