Matt Gilene

Results 21 comments of Matt Gilene

Checking for an update on this issue. As mentioned above it seems as though the ngxs/devtools project is abandoned. Would be great to see some kind of resolution or potential...

Finally got back around to this. I've addressed the merge conflicts and fixed up the tests. There is one linting error I still see but it's for a line I...

I'm running into this issue as well and have narrowed it down to `pydantic==1.10.3` causing issues with `mypy==1.1.1` Downgrading to `pydantic=1.10.2` resolves the issue for me.

> I can't seem to reproduce this issue — I get: > > ``` > 9: error: Missing named argument "field" for "Model" [call-arg] > ``` > > as the...

Version Info ``` (mypy-pydantic-py3.10) @mdgilene ➜ /workspaces/codespaces-blank (main) $ python -c "from mypy.version import __version__; print(f' mypy_version: {__version__}')" && python -c "import pydantic.utils; print(pydantic.utils.version_info())" mypy_version: 1.1.1 pydantic version: 1.10.3 pydantic...

I just downgraded `mypy` to `1.0.1` like you have and it looks like the error actually goes away and I am seeing what you are seeing. I am wondering then...

Okay yes, upgrading to 1.10.7 does resolve the issue.

> ```python > from pydantic import BaseModel, Field > > class Model(BaseModel): > field: str = Field(alias="alias") > > class Config: > allow_population_by_field_name = True > > Model(alias="") > Model(field="")...

My specific use case was the need to basically send a request "on behalf" of another user, not just using something like `client_credential` grant. So, a user makes a request...

We ended up going a different direction, so this wasn't specifically needed in the end. However, to the solution he provided; I think this would work for setting the JWT...