Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ def pre_milvus_enrichment() -> VectorDBContainerInfo:
uri=db.uri,
user=db.user,
password=db.password,
db_id=db.id,
db_name=db.id,
token=db.token)
collection_name = MilvusTestHelpers.initialize_db_with_data(
connection_params)
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/apache_beam/ml/inference/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ def __init__(self, mh_map: dict[str, ModelHandler]):
# Map key for a model to a unique tag that will persist for the life of
# that model in memory. A new tag will be generated if a model is swapped
# out of memory and reloaded.
self._tag_map: dict[str, str] = OrderedDict()
self._tag_map: OrderedDict[str, str] = OrderedDict()
# Map a tag to a multiprocessshared model object for that tag. Each entry
# of this map should last as long as the corresponding entry in _tag_map.
self._proxy_map: dict[str, multi_process_shared.MultiProcessShared] = {}
Expand Down
1 change: 0 additions & 1 deletion sdks/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -212,5 +212,4 @@ not-callable = "ignore"
invalid-argument = "ignore"
invalid-inheritance = "ignore"
not-iterable = "ignore"
unexpected-keyword = "ignore"
bad-class-definition = "ignore"
Loading