Skip to content
Merged
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions weaviate/collections/classes/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2325,8 +2325,8 @@ def inject_vector_config_none(
) -> Union[_VectorConfigCreate, List[_VectorConfigCreate], None]:
if (
v is None
and info.data["vectorizerConfig"] is None
and info.data["vectorIndexConfig"] is None
and info.data.get("vectorizerConfig") is None
and info.data.get("vectorIndexConfig") is None
):
return _VectorConfigCreate(
name="default",
Expand Down
Loading