Replies: 1 comment 1 reply
-
You need to create a new metaclass that inherits from the metaclass of class A and the metaclass of class B. class ABMeta(type(A), type(B)):
pass
class C(A, B, metaclass=ABMeta):
... If something doesn't work properly, it means that you need to implement some code in the metaclass body. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Using PaletteWithDocReactor as an example. Why can't I do something like
error
Beta Was this translation helpful? Give feedback.
All reactions