Skip to content

Commit 2719245

Browse files
authored
Fix ContainerHelper from being non-iterable (#187)
1 parent 737deb9 commit 2719245

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

UnityPy/files/SerializedFile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,7 @@ def __delitem__(self, key):
673673
raise NotImplementedError("Deleting from the container is not allowed!")
674674

675675
def __iter__(self):
676-
return iter(self.keys)
676+
return iter(self.keys())
677677

678678
def __len__(self):
679679
return len(self.container)

0 commit comments

Comments
 (0)