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 ab04ef6 commit 2c11561Copy full SHA for 2c11561
1 file changed
UnityPy/classes/Object.py
@@ -37,9 +37,7 @@ def __copy__(self) -> Object:
37
data = {
38
key: value
39
for key, value in self.__dict__.items()
40
- if isinstance(key, str)
41
- and (not key.startswith("__") or key == "__node__")
42
- and not callable(value)
+ if isinstance(key, str) and (not key.startswith("__") or key == "__node__") and not callable(value)
43
}
44
try:
45
# covers UnknownObject
0 commit comments