Skip to content

Commit 97d41fa

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 865cd37 commit 97d41fa

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Tests/test_file_bmp.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,10 +226,11 @@ def encode_rle4(width: int, palette: bytes, rle: bytes) -> io.BytesIO:
226226
+ rle
227227
)
228228

229+
229230
def test_rle4_black() -> None:
230231
rle = (
231232
b"\x00\x03" # absolute mode, 3 pixels
232-
b"\x0F" # nibbles 0 and 255
233+
b"\x0f" # nibbles 0 and 255
233234
b"\x00\x01" # end of bitmap
234235
)
235236
b = encode_rle4(2, b"\x00" * 4, rle)

0 commit comments

Comments
 (0)