Skip to content

Commit 9012030

Browse files
authored
Update CassetteBlock attributes to correct types
Change attributes in CassetteBlock class to use appropriate types.
1 parent 2af7ce1 commit 9012030

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

games/game_cassettebeasts.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ def fix(self, filetree: mobase.IFileTree) -> mobase.IFileTree:
6565

6666
class CassetteBlock:
6767
def __init__(self):
68-
compressed_size: str = "(unknown)"
69-
data: str = "(unknown)"
68+
self.compressed_size: int = 0
69+
self.data: bytes = b''
7070

7171
class CassetteBeastsSaveGame(BasicGameSaveGame):
7272
def __init__(self, filepath: Path):

0 commit comments

Comments
 (0)