Skip to content

Commit 353800f

Browse files
committed
pep8
1 parent dbd7eec commit 353800f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

demosys/scene/loaders/gltf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def load_glb(self):
131131
raise ValueError("{} has unsupported version {}".format(self.file, version))
132132

133133
# Total file size including headers
134-
_ = struct.unpack('<I', fd.read(4))[0]
134+
_ = struct.unpack('<I', fd.read(4))[0] # noqa
135135

136136
# Chunk 0 - json
137137
chunk_0_length = struct.unpack('<I', fd.read(4))[0]

0 commit comments

Comments
 (0)