Zecong Hu
Zecong Hu
- [x] I've checked [docs](https://rich.readthedocs.io/en/latest/introduction.html) and [closed issues](https://github.com/Textualize/rich/issues?q=is%3Aissue+is%3Aclosed) for possible solutions. - [x] I can't find my issue in the [FAQ](https://github.com/Textualize/rich/blob/master/FAQ.md). **Describe the bug** First of all, thanks for building...
False positive error: Overloaded function signatures 1 and 2 overlap with incompatible return types
#### Are you reporting a bug, or opening a feature request? Bug. #### Please insert below the code you are checking with mypy, or a mock-up repro if the source...
### Steps to reproduce 1. Create file `foo.py` containing: ```python from typing import Generic, TypeVar T = TypeVar('T') class Base(Generic[T]): def __init__(self): self.val = False class Derived(Base[T]): def func(self): self.val...