We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b980cc commit 1b53203Copy full SHA for 1b53203
tests/test_igzip.py
@@ -347,7 +347,7 @@ def headers():
347
flag = FHCRC.to_bytes(1, "little")
348
header = common_hdr_start + flag + common_hdr_end
349
crc = zlib.crc32(header) & 0xFFFF
350
- yield(header + crc.to_bytes(2, "little"))
+ yield header + crc.to_bytes(2, "little")
351
flag_bits = FTEXT | FEXTRA | FNAME | FCOMMENT | FHCRC
352
flag = flag_bits.to_bytes(1, "little")
353
header = (common_hdr_start + flag + common_hdr_end +
0 commit comments