Код: Выделить всё
main.pyКод: Выделить всё
import mymixin.py
class Main(object, MyMixin):
def func1(self, xxx):
...
Код: Выделить всё
mymixin.pyКод: Выделить всё
class MyMixin(object):
def func2(self: Main, xxx): #Код: Выделить всё
main.pyКод: Выделить всё
import mymixin.py
class Main(object, MyMixin):
def func1(self, xxx):
...
Код: Выделить всё
mymixin.pyКод: Выделить всё
class MyMixin(object):
def func2(self: Main, xxx): #