<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">class A:
    def a(self) -&gt; str:
        return "b"


class B(A):
    def b(self) -&gt; str:
        return "c"


class Inherit(A):
    def a(self) -&gt; str:
        return "d"
</pre></body></html>