Skip to content

Commit

Permalink
fromatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Iding Robin authored and Iding Robin committed Sep 12, 2023
1 parent 5f32f02 commit af6c10d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions can/io/blf.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,7 @@ def __iter__(self) -> Generator[Message, None, None]:
if method == NO_COMPRESSION:
data = container_data
elif method == ZLIB_DEFLATE:
# obj for decompressing data streams that won’t fit into memory at once.
zobj = zlib.decompressobj()
zobj = zlib.decompressobj()
data = zobj.decompress(container_data)
else:
# Unknown compression method
Expand Down

0 comments on commit af6c10d

Please sign in to comment.