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 dbd7eec commit 353800fCopy full SHA for 353800f
demosys/scene/loaders/gltf.py
@@ -131,7 +131,7 @@ def load_glb(self):
131
raise ValueError("{} has unsupported version {}".format(self.file, version))
132
133
# Total file size including headers
134
- _ = struct.unpack('<I', fd.read(4))[0]
+ _ = struct.unpack('<I', fd.read(4))[0] # noqa
135
136
# Chunk 0 - json
137
chunk_0_length = struct.unpack('<I', fd.read(4))[0]
0 commit comments