Skip to content

Commit

Permalink
parser: fix bug where apple_compress is never imported on *OS systems
Browse files Browse the repository at this point in the history
  • Loading branch information
m1stadev committed Apr 22, 2024
1 parent 93f2bca commit 9914353
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyimg4/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from .errors import CompressionError, UnexpectedDataError, UnexpectedTagError
from .types import Compression, KeybagType, Payload

if platform == 'Darwin':
if platform == 'darwin':
import apple_compress

def _lzfse_compress(data: bytes) -> bytes:
Expand Down

0 comments on commit 9914353

Please sign in to comment.