Skip to content

Commit

Permalink
Fix py 3.6 multi inheritance issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ro-oliveira95 committed Nov 21, 2023
1 parent 0c46e6c commit 32edb03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/oop_ext/interface/_tests/test_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -1085,7 +1085,7 @@ def testGenericInterface() -> None:

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

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

Expand Down

0 comments on commit 32edb03

Please sign in to comment.