-
But autocomplete works, and the call sites link me to the function definition just fine.
![Screen Shot 2022-11-11 at 6 04 07 PM](https://user-images.githubusercontent.com/11688869/201451431-413888a…
-
## Lapce Version
0.2.5
## System information
Arch Linux, Kernel 6.1.2-arch1-1, KDE 5.26.4
## Describe the bug
Installing multiple LSP server plugins for the same language causes them to clobb…
-
Is it possible on a technical level for this extension to overwrite the inlay type hints from Pylance (Pyright) with ones from MyPy? If so, would you consider this to be a feature worth implementing?
…
-
Currently it's not possible not to use pydantic mypy plugin while using strawberry mypy plugin and experimental pydantic types.
It could be useful for users who do not want to enable pydantic plugi…
-
Hi! Thanks for your work.
I couldn't make mypy plugins to work since python-lsp-server is separate from specific project: they would have to be installed in the same environment as python-lsp-serve…
-
```
from strawberry_django_plus import gql
@gql.type
class EditUserResponse:
ok: bool
reason: Optional[str] = None
```
...
```return EditUserResponse(ok=True)```
Produces the er…
eloff updated
10 months ago
-
With the `inspect`/`ast` modules I can get an AST of e.g. a function and inspect variables - but in terms of types, I can only get the annotations from the signature (AFAIK).
Can mypy enrich the re…
-
### Bug
I ran into this issue when trying to fix a bug with [pyvistaqt](https://qtdocs.pyvista.org/). It appears, for some reason, when all of
- `PyQt5`
- `PySide2`
- `PyQt6`
- `PySide6`
a…
-
**Bug Report**
mypy incorrectly tags a function argument of type `Mapping[K, V]` where `K` and `V` are `TypeVar` with the return value of the caller function.
**To Reproduce**
The below small…
-
**Feature**
Mypy's plugin helpers provide a few common cases, like adding an attribute and adding a method. I have a working implementation of adding a static method to a class, and as far as I can…