Skip to content

Commit 8ffbd94

Browse files
committed
chore: lint
1 parent 2873764 commit 8ffbd94

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_codecs/test_scale_offset.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -453,5 +453,5 @@ def test_compute_encoded_size() -> None:
453453
"""compute_encoded_size returns the input byte length unchanged (codec is fixed-size)."""
454454
codec = ScaleOffset(offset=0, scale=1)
455455
# The chunk_spec argument is unused; pass any sentinel
456-
assert codec.compute_encoded_size(input_byte_length=100, _chunk_spec=None) == 100 # type: ignore[arg-type]
457-
assert codec.compute_encoded_size(input_byte_length=0, _chunk_spec=None) == 0 # type: ignore[arg-type]
456+
assert codec.compute_encoded_size(input_byte_length=100, _chunk_spec=None) == 100 # type: ignore[arg-type]
457+
assert codec.compute_encoded_size(input_byte_length=0, _chunk_spec=None) == 0 # type: ignore[arg-type]

0 commit comments

Comments
 (0)