I noticed we have quite a few ```py def __getattr__(name: str) -> Incomplete: ... ``` Wouldn't it be better to write as ```py def __getattr__(name: str): ... # incomplete ``` So that type-checkers like Pyright in strict mode can warn about unknown types ?