Expected Type 'list[a]' (matched Generic Type 'list[_t]'), Got 'list[b]' Instead On Correctly Typed Lists
from typing import List class Base(object): pass class A(Base): pass class B(Base): …
Read more
Expected Type 'list[a]' (matched Generic Type 'list[_t]'), Got 'list[b]' Instead On Correctly Typed Lists