Skip to content

Commit 2c11561

Browse files
committed
chore: ruff format
1 parent ab04ef6 commit 2c11561

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

UnityPy/classes/Object.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,7 @@ def __copy__(self) -> Object:
3737
data = {
3838
key: value
3939
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)
40+
if isinstance(key, str) and (not key.startswith("__") or key == "__node__") and not callable(value)
4341
}
4442
try:
4543
# covers UnknownObject

0 commit comments

Comments
 (0)