Код: Выделить всё
main.py
Код: Выделить всё
import mymixin.py
class Main(object, MyMixin):
def func1(self, xxx):
...
Код: Выделить всё
mymixin.py
Код: Выделить всё
class MyMixin(object):
def func2(self: Main, xxx): #
Подробнее здесь: [url]https://stackoverflow.com/questions/39740632/python-type-hinting-without-cyclic-imports[/url]