Aaron Wilson
Aaron Wilson
We aren't ðŸ˜, we're using Ariadne. But since I'm already here I can pull you guys down and resubmit to it, I can always backport any changes from that discussion
You should at least be able to support the `Awaitable` inference, using either a `TypeVar` ``` from typing import Awaitable, TypeVar T = TypeVar("T") def make_wrapper(some_func: Callable[..., T]) -> Callable[...,...
In the meantime, for anyone stumbling on this who just wants a solution, it is safe to do, e.g., ``` from typing import Awaitable, cast result = await cast(Awaitable, stripe.Customer.retrieve(customer_id))...
(after thinking about this for most of an hour it occurs to me that the monkeypatches actually will still keep this style of inference from working, because they are modifying...
Thirding this issue, it is a nasty surprise. We saw this behavior during the run of unit tests, which is absolutely the wrong place for a pip install, under any...
Concur with this. We're having an issue where this loop is generating tens of thousands of unactionable events for our exception logger. Via [this comment](https://github.com/vulcand/vulcand/issues/65#issuecomment-54178425) and its responses, it appears...
I'm also interested in the answer for this, though the fact that it hasn't been forthcoming in over a year makes me think perhaps the capability doesn't exist, yet. I...