-
Most of the CDK type signatures use `List` instead of `Sequence`. `List` is invariant http://mypy.readthedocs.io/en/latest/common_issues.html#variance
So this means we can't do something simple lik…
-
currently mypy supports it in `mypy_extensions`, so pyright needs an equivalent
```py
from typing import *
from mypy_extensions import Arg
P = ParamSpec("P")
class A(Generic[P]): ...
a: A[…
-
It would be great if this plugin could support a reporting scope of `project`, which typechecks all files in the current project (defined as the first directory in the tree with a `pyproject.toml` fil…
-
Type checking the source code with mypy currently results in multiple errors.
-
It warns `cannot find implementation or library stub for module` when I put my source code in a sub folder, while running directly `mypy pacro` will show no warnings.
```log
$ tree
├── mypy.ini
├─…
-
Hi, thanks for the work on this project. It really improves the development workflow to have the proto and grpc interfaces recognizable by the language server (vscode pyright in my case).
# The con…
-
### Initial Checks
- [X] I confirm that I'm using Pydantic V2
### Description
The code below used to work on 2.9.2, but it crashes on 2.10 with a message:
`RuntimeError: Cannot update undefined sc…
-
### Dagster version
dagster, version 1.5.5
### What's the issue?
Been eagerly awaiting to use Pydantic 2+ with Dagster 1.5.5.
However, my project's CI was failing with `mypy` with the fol…
-
**Bug Report**
`--enable-error-code possibly-undefined` does not detect when a local variable is conditionally set by a `for` loop.
**To Reproduce**
https://gist.github.com/mypy-play/…
-