Skip to content

Commit e961bfc

Browse files
committed
fix: fix fix
1 parent c18e951 commit e961bfc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

qdrant_client/local/async_qdrant_local.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ async def close(self, **kwargs: Any) -> None:
8989
pass
9090

9191
def _load(self) -> None:
92-
deprecated_config_fields = "init_from"
92+
deprecated_config_fields = ("init_from",)
9393
if not self.persistent:
9494
return
9595
meta_path = os.path.join(self.location, META_INFO_FILENAME)

qdrant_client/local/qdrant_local.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def close(self, **kwargs: Any) -> None:
9292
pass
9393

9494
def _load(self) -> None:
95-
deprecated_config_fields = "init_from"
95+
deprecated_config_fields = ("init_from",)
9696

9797
if not self.persistent:
9898
return

0 commit comments

Comments
 (0)