-
I'd like to open a discussion about typing for multi-dimensional arrays in general, and more specifically for NumPy. We have already been discussing this over in the NumPy issue tracker (https://githu…
-
Hi, first of all, thanks for making this nice library!
I just saw #110 and the new release which is nice, but `mypy` on my project still complains about missing type stubs or `py.typed` marker. Ind…
xen0n updated
9 months ago
-
Type hints are now included in every function in `climpyrical`, but enforcing them with `mypy` is less straightforward. `mypy` requires certain third-party criteria to be met. Since `climpyrical` ofte…
-
I've got the following snippet
```python
from django.db import models
class PhoneField(models.CharField):
"""Phone field based on CharField with validation."""
def __init__(self, *arg…
-
Sorry, I don't have much time, but mypy screams here:
```
my_valyes = values(
column("x", Integer), # here
column("y", Integer), # and here
name="my_values",
).data(my_values_da…
-
### What would you like to happen?
Support running `mypy` on my own Beam pipeline code by adding type stubs.
Simply importing `apache_beam` fails with `mypy`.
```py
#-- main.py
import apach…
-
**Describe the bug**
Receiving an error when using `@declared_attr` decorator on `__tablenane__` class method.
**Expected behavior**
Not receiving an error.
**To Reproduce**
```py
from uuid …
-
## Description
Attempting to install via brew on a brand new macbook pro so environment is pretty clean. Installed homebrew and directly tried running this got something wrong with zstd's linking i…
-
Hi, I'm creating example for using the `molviewspec` Python package. All works fine and I'm getting correct code suggestions and types in IDE. But when I run mypy, it says types for `molviewspec` are …
-
**Bug Report**
I can type-annotate untyped imports from a local file, but not from a package (in which case I get a `no-redef` error).
**To Reproduce**
`my_local.py`
```python
from funcy.de…