You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get an error Incompatible return value type (got "object", expected "Response[str] | Response[T]") which I don't expect because it seems to be typed generically based on the signature of the function it is running.
thanks!
The text was updated successfully, but these errors were encountered:
Ben-Epstein
changed the title
Incorrect typing when using asyncio.gather
Incorrect typing when using asyncio.runDec 18, 2024
Apologies if i'm in the wrong repo. I thought this was the right place because of #30
I have an example where mypy is complaining that my call is returning a type
object
when it should be returningResponse[T] | Response[str]
I get an error
Incompatible return value type (got "object", expected "Response[str] | Response[T]")
which I don't expect because it seems to be typed generically based on the signature of the function it is running.thanks!
The text was updated successfully, but these errors were encountered: