File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change 1- # ruff: noqa: D205
2-
31from __future__ import annotations
42
53from typing import Any , ClassVar
Original file line number Diff line number Diff line change @@ -7,8 +7,6 @@ from ._uobject import UObject
77from ._wrapped_array import WrappedArray
88from ._wrapped_struct import WrappedStruct
99
10- # ruff: noqa: N802, N803
11-
1210# ======== First Layer Subclasses ========
1311
1412class UField (UObject ):
@@ -107,14 +105,13 @@ class UBoolProperty(UProperty):
107105 FieldMask : int
108106
109107class UByteProperty (UProperty ):
110- @property
111- def Enum (self ) -> UEnum | None : ...
108+ Enum : UEnum | None
112109
113110class UClass (UStruct ):
114111 ClassDefaultObject : UObject
115112
116113 @property
117- def Interfaces (self ) -> list [UClass ]: ...
114+ def Interfaces (self ) -> list [UClass ]: ... # noqa: N802
118115 def _implements (self , interface : UClass ) -> bool :
119116 """
120117 Checks if this class implements a given interface.
You can’t perform that action at this time.
0 commit comments