Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
altendky committed Jan 28, 2025
1 parent e5baa6d commit e0a10f3
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions tests/test_datalayer.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
import pytest

from chia_rs.datalayer import InvalidBlobLengthError, LeafNode, MerkleBlob, KeyId, ValueId
from chia_rs.datalayer import (
InvalidBlobLengthError,
LeafNode,
MerkleBlob,
KeyId,
ValueId,
)
from chia_rs.sized_bytes import bytes32
from chia_rs.sized_ints import int64, uint8

Expand Down Expand Up @@ -45,7 +51,11 @@ def test_checking_coverage() -> None:
merkle_blob.insert(KeyId(int64(i)), ValueId(int64(i)), bytes32.zeros)
else:
merkle_blob.insert(
KeyId(int64(i)), ValueId(int64(i)), bytes32.zeros, KeyId(int64(i - 1)), uint8(0)
KeyId(int64(i)),
ValueId(int64(i)),
bytes32.zeros,
KeyId(int64(i - 1)),
uint8(0),
)

keys = {
Expand Down

0 comments on commit e0a10f3

Please sign in to comment.