-
Hello folks,
Recently [numpy](https://github.com/numpy/numpy/issues/7370) added some type hinting for their types. Tools like mypy is suppose to make it easier to test large codebases. There is a …
f0lie updated
2 months ago
-
Module stubs without `__all__` aren't reported by stubtest:
Write a codemod that copies the missing `__all__` from a `{}.py` to its `{}.pyi` if needed.
-
Is it possible to create a task that executes multiple tasks in parallel?
I know I can create a compond task as
`test = ["mypy", "pylint", "pytest"]`
Calling `poe test` will run each task in …
-
**Describe the bug**
As of `2.2.33` I was not getting any type-related errors, but upgrading to the latest `2.2.354` resulted in getting them.
`error: Call to untyped function "AnonymizerEngine" i…
-
It looks like `mypy` is treating every value of type `faust.Record` as `Any`: absolutely no type checking is done on them.
This is related to #233, but larger than only constructor arguments (who IIR…
-
### Bug description
```python
from typing import Callable, Concatenate, ParamSpec, TypeVar
S = TypeVar('S')
P = ParamSpec('P')
RealFun = Callable[Concatenate[S, P], None]
FunWithEvent = Callabl…
-
I'm interesting in working on this. Would you accept a PR for it?
**Is your feature request related to a problem? Please describe.**
Type checking for code which uses argdantic isn't possible.
…
-
Currently, `tox.ini` only has mypy running on the api, so the sdk is not covered in CI: https://github.com/open-telemetry/opentelemetry-python/blob/2ad9f497c56117c26fd49ec63d996ed85df36e0f/tox.ini#L25…
-
I'm having an issue when trying to initialize the Retell client in python. This is a simple way to reproduce the error:
```python
In [1]: from retell import Retell
In [2]: Retell(api_key=settin…
-
```py
from typing import TypeAlias
Values: TypeAlias = dict[str, int]
a = Values(foo="") # no error
```
[playground](https://mypy-play.net/?mypy=master&python=3.10&flags=show-error-codes%2Ca…