Skip to content

Commit

Permalink
Fixed F-string in logging message (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
nlsfnr authored Mar 3, 2023
1 parent 3dec201 commit 37b52a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chromadb/db/index/hnswlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def _save(self):
with open(f"{self._save_folder}/index_metadata_{self._collection_uuid}.pkl", "wb") as f:
pickle.dump(self._index_metadata, f, pickle.HIGHEST_PROTOCOL)

logger.debug("Index saved to {self._save_folder}/index.bin")
logger.debug(f"Index saved to {self._save_folder}/index.bin")

def load_if_not_loaded(self, collection_uuid):
if self._collection_uuid != collection_uuid:
Expand Down

0 comments on commit 37b52a7

Please sign in to comment.