Skip to content

Commit

Permalink
Lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
fchirica committed Dec 4, 2024
1 parent 21aee68 commit 4a3ba52
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 @@ -484,7 +484,7 @@ async def get_first_generation(self, node_hash: bytes32, store_id: bytes32) -> O

return int(row[0])

async def get_existing_hashes(self, node_hashes: List[bytes32], store_id: bytes32) -> set[bytes32]:
async def get_existing_hashes(self, node_hashes: list[bytes32], store_id: bytes32) -> set[bytes32]:
result: set[bytes32] = set()
batch_size = min(500, SQLITE_MAX_VARIABLE_NUMBER - 10)

Expand Down

0 comments on commit 4a3ba52

Please sign in to comment.