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
project=awaitgl.projects.get(id=1, lazy=True)
issues=awaitproject.issues.list()
# or even worseissues=await (awaitgl.projects(id=1, lazy=True)).issues.list()
There is no chance to keep together async version of .get() and do not require await lazy object so easiest solution is to introduce GetMixin.get_lazy(id, **kwargs):
It's frustration to make extra await
There is no chance to keep together async version of
.get()
and do not requireawait
lazy object so easiest solution is to introduceGetMixin.get_lazy(id, **kwargs)
:The text was updated successfully, but these errors were encountered: