🔨 Build scripts cleanup (#27157)

Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
This commit is contained in:
Andrew
2024-06-14 17:01:34 -04:00
committed by GitHub
parent ae2843940f
commit 959be66cc2
41 changed files with 130 additions and 151 deletions

View File

@@ -206,12 +206,12 @@ class Entry():
'''
__slots__ = ('width', 'height', 'offset', 'length', 'filename')
def __init__(self, w=0, h=0, length=0, offset=0):
def __init__(self, w=0, h=0, length=0, offset=0, filename=None):
self.width = w
self.height = h
self.offset = offset
self.length = length
self.filename = None
self.filename = filename
def parseRawData(self, rawEntryBytes):
if len(rawEntryBytes) != 16: