Try using annotations package, described here.
Change your code to the following:
from __future__ import annotations class MyClass: def compare(self, other: MyClass): pass
Also, there is a helpful tutorial here.