Skip to content

Commit fe518ed

Browse files
more linting
Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>
1 parent 6d94d7a commit fe518ed

File tree

1 file changed

+2
-1
lines changed
  • sdk/python/feast/infra/online_stores/milvus_online_store

1 file changed

+2
-1
lines changed

sdk/python/feast/infra/online_stores/milvus_online_store/milvus.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
FieldSchema,
1010
connections,
1111
)
12+
from pymilvus.orm.connections import Connections
1213

1314
from feast import Entity
1415
from feast.feature_view import FeatureView
@@ -102,7 +103,7 @@ class MilvusOnlineStore(OnlineStore):
102103
_collections: Dictionary to cache Milvus collections.
103104
"""
104105

105-
_conn: Optional[connections] = None
106+
_conn: Optional[Connections] = None
106107
_collections: Dict[str, Collection] = {}
107108

108109
def _connect(self, config: RepoConfig) -> connections:

0 commit comments

Comments
 (0)