File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ def unitypy_define(cls: T) -> T:
32
32
which would make type-hinting more tricky, and breaks attrs.define.
33
33
34
34
Therefore this function bypasses the issue
35
- by redifining the bases for problematic classes for the attrs.define call.
35
+ by redefining the bases for problematic classes for the attrs.define call.
36
36
"""
37
37
bases = cls .__bases__
38
38
if bases [0 ] in (object , Object , ABC ):
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ def unitypy_define(cls: T) -> T:
75
75
which would make type-hinting more tricky, and breaks attrs.define.
76
76
77
77
Therefore this function bypasses the issue
78
- by redifining the bases for problematic classes for the attrs.define call.
78
+ by redefining the bases for problematic classes for the attrs.define call.
79
79
\" \" \"
80
80
bases = cls.__bases__
81
81
if bases[0] in (object, Object, ABC):
You can’t perform that action at this time.
0 commit comments