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 stumbled upon this error in documentation, the set reply is said to have a method asset() that returns a set but it is implemented as a coroutine and therefore it returns a future of set and that means that the user of the API has to put s = await reply.asset() and not just s = reply.asset(). Other places in the documentation seem to mention that stuff is a coroutine by specifying a return type of future but this one doesn't.
The text was updated successfully, but these errors were encountered:
I stumbled upon this error in documentation, the set reply is said to have a method
asset()
that returns a set but it is implemented as a coroutine and therefore it returns a future of set and that means that the user of the API has to puts = await reply.asset()
and not justs = reply.asset()
. Other places in the documentation seem to mention that stuff is a coroutine by specifying a return type offuture
but this one doesn't.The text was updated successfully, but these errors were encountered: