mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 08:03:55 +00:00
Superclass typo fix
This didn't actually affect anything (because all the MI3 constructor does is invoke MI2 with the same arguments anyway).
This commit is contained in:
parent
12be4cd418
commit
85d63c3bcd
@ -72,7 +72,7 @@ def test_multiple_inheritance_python():
|
||||
|
||||
class MI4(MI3, m.Base2):
|
||||
def __init__(self, i, j, k):
|
||||
MI2.__init__(self, j, k)
|
||||
MI3.__init__(self, j, k)
|
||||
m.Base2.__init__(self, i)
|
||||
|
||||
class MI5(m.Base2, B1, m.Base1):
|
||||
|
Loading…
Reference in New Issue
Block a user