Skip to content

Commit

Permalink
ruff and black mismatch of linting
Browse files Browse the repository at this point in the history
  • Loading branch information
iQuxLE committed Aug 29, 2024
1 parent f14b4ff commit 859cccd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/curate_gpt/store/duckdb_adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,8 +337,8 @@ def _process_objects(
try:
self.conn.execute("BEGIN TRANSACTION;")
self.conn.executemany(
sql_command, list(zip(ids, metadatas, embeddings, docs))
) # noqa: B905
sql_command, list(zip(ids, metadatas, embeddings, docs)) # noqa: B905
)
# reason to block B905: codequality check
# blocking 3.11 because only code quality issue and 3.9 gives value error with keyword strict
# TODO: delete after PR#76 is merged
Expand Down

0 comments on commit 859cccd

Please sign in to comment.