Skip to content

Commit 32edb03

Browse files
committed
Fix py 3.6 multi inheritance issue
1 parent 0c46e6c commit 32edb03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/oop_ext/interface/_tests/test_interface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1085,7 +1085,7 @@ def testGenericInterface() -> None:
10851085

10861086
T = TypeVar("T", covariant=True)
10871087

1088-
class IFoo(Interface, Generic[T], TypeCheckingSupport):
1088+
class IFoo(Generic[T], Interface, TypeCheckingSupport):
10891089
def GetOutput(self) -> T: # type:ignore[empty-body]
10901090
...
10911091

0 commit comments

Comments
 (0)