Guillaume Gelin
Guillaume Gelin
Hey, sorry for the huge response time! Why is this needed?
Let's just add the header then, no need to remind the users everytime they look at the `--help`. :)
Hey there, sorry for the very slow answer. I'd be happy to add Dynaboard but is it an open source software or is it a service? If it's a service,...
Closing PR due to the lack of answer and because Dynaboard seems to be shutting down as mentioned on their website.
Hey @guacs! Thanks a lot for this first iteration. Quick thoughts: * I'd prefer to avoid code duplication, and I really want to avoid *manual* code duplication at all costs;...
Looks better, thanks! I'm still quite reluctant to duplicate the whole endpoints file to handle types. If I understand correctly, the duplication is only due to "the `SyncAsync[T]` [that] does...
What about something like this? Mypy seems happy: ```diff class UsersEndpoint(Endpoint): - def list(self, **kwargs: Any) -> SyncAsync[Any]: + @overload + async def list(self, **kwargs: Any) -> List[UserObjectResponse]: + ......
Yeah right, this is not the proper way to use `@overload`, it needs at least two alternatives and it can't use the return type to decide which alternative to use......
Cool, happy that you like it! Just a quick note: I think we should use `__future__.annotations` to make a lot of the typing stuff simpler. It looks like it has...
The PR is stale so I'll close it, but feel free to open a new PR if you feel like it!