Rafał Chłodnicki

Results 1204 comments of Rafał Chłodnicki

So as I've suggested but that has the issue with making types too loose (per my previous comment).

With those changes in an override like: ```py class TestTypesCommand(sublime_plugin.TextCommand): def run(self, edit) -> None: pass ``` The type of `edit` won't be known. And if one assigns it a...

True for `mypy`. I've been checking with `pyright`. I guess I'll ask for the reason in its repo.

It's currently considered a bug in pyright so the earlier suggested solution looks like the way to go. https://github.com/microsoft/pyright/issues/11092