Add coro tag to docstrings that were missing it

This commit is contained in:
ster
2022-10-03 06:52:18 +09:00
committed by GitHub
parent dc34a8f1dc
commit 95b6bd8782
6 changed files with 31 additions and 10 deletions

View File

@ -508,7 +508,9 @@ class View:
return self.timeout is None and all(item.is_persistent() for item in self._children)
async def wait(self) -> bool:
"""Waits until the view has finished interacting.
"""|coro|
Waits until the view has finished interacting.
A view is considered finished when :meth:`stop` is called
or it times out.