Skip to content

Commit 1b53203

Browse files
committed
Fix small lint error
1 parent 3b980cc commit 1b53203

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_igzip.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ def headers():
347347
flag = FHCRC.to_bytes(1, "little")
348348
header = common_hdr_start + flag + common_hdr_end
349349
crc = zlib.crc32(header) & 0xFFFF
350-
yield(header + crc.to_bytes(2, "little"))
350+
yield header + crc.to_bytes(2, "little")
351351
flag_bits = FTEXT | FEXTRA | FNAME | FCOMMENT | FHCRC
352352
flag = flag_bits.to_bytes(1, "little")
353353
header = (common_hdr_start + flag + common_hdr_end +

0 commit comments

Comments
 (0)