Paweł Rubin

Results 9 comments of Paweł Rubin

Hi @twobeeb, Excellent remark! The `email` claim indeed works fine. However, if one wants to use the `nickname` claim, do you know, by any chance, how to use the `/oauth/userinfo`...

The **black** formatter does not allow the configuration of string quoting.

Hi @kini, @koxudaxi. I think @kini's suggestion to use the same type for field constraints and values will be sufficient to overcome this issue. Is there any chance that this...

Hi folks ✋🏻 Looking at the name of this issue and the fact that it's still open, I've decided to ask here. I'm curious if there is anybody currently working...

> Such massive changes invalidate all pull requests that are stale in review. It'd be quite unfriendly step towards their authors. It would only require running `black .` on the...

Hi @tiangolo, could you have a look at this PR? 🙏🏻

@thomasleveil Yes, it does introduce a breaking change, but only to the `TestClient`. Assuming that the `TestClient` is not used in any application code, this change will break only the...

I've realized that one can declare the ingress and egress with `dict`s. ```python from troposphere import Parameter, Ref, Template from troposphere.ec2 import SecurityGroup, SecurityGroupEgress, SecurityGroupIngress template = Template() vpc_id =...

This is achievable via `Protocol`. @rafalp Let me know if the definitions below would be correct. ```python class Resolver(Protocol): def __call__(self, obj: Any, info: GraphQLResolveInfo, **kwargs: Any) -> Any: pass...