Skip to content

Commit

Permalink
fix: black linter issue!
Browse files Browse the repository at this point in the history
based on superlinter CI lint error.
  • Loading branch information
amindadgar committed Mar 7, 2024
1 parent a34b696 commit bdb0b23
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tc_hivemind_backend/pg_vector_access.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,7 @@ def __init__(
self.table_name = table_name
self.dbname = dbname
self.testing = testing
self.embed_model: BaseEmbedding = kwargs.get(
"embed_model", CohereEmbedding()
)
self.embed_model: BaseEmbedding = kwargs.get("embed_model", CohereEmbedding())

if testing:
self.embed_model = MockEmbedding(embed_dim=1024)
Expand Down

0 comments on commit bdb0b23

Please sign in to comment.