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 cfcabdf commit d6e2b8fCopy full SHA for d6e2b8f
2 files changed
Source/assets/serialisers/rbxl/_logic.py
@@ -3,7 +3,6 @@
3
from typing import Callable, override
4
import dataclasses
5
import lz4.block
6
-import pyzstd
7
import io
8
9
HEADER_SIGNATURE = b'<roblox!\x89\xff\r\n\x1a\n'
@@ -272,6 +271,7 @@ def decompress_chunk(self) -> chunk_info | None:
272
271
if compressed_size == 0:
273
chunk_data_bytes = self.read_stream.read(uncompressed_size)
274
else:
+ import pyzstd
275
compressed_chunk_data = self.read_stream.read(compressed_size)
276
if compressed_chunk_data.startswith(b'\x28\xB5\x2F\xFD'):
277
chunk_data_bytes = pyzstd.decompress(compressed_chunk_data)
Source/requirements.dev.txt
@@ -1,2 +1,2 @@
1
pyinstaller==6.20.0
2
-pillow==11.0.0
+pillow==12.2.0
0 commit comments