Skip to content

Commit

Permalink
Ruff.
Browse files Browse the repository at this point in the history
  • Loading branch information
fchirica committed Jan 13, 2025
1 parent 9fdf651 commit 200cd1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chia/data_layer/data_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ async def insert_into_data_store_from_file(

async with self.db_wrapper.reader() as reader:
for i in range(0, len(missing_hashes), batch_size):
batch = missing_hashes[i:i + batch_size]
batch = missing_hashes[i : i + batch_size]
placeholders = ",".join("?" for _ in batch)
query = f"""
SELECT hash, root_hash, idx
Expand Down

0 comments on commit 200cd1d

Please sign in to comment.