Add coro tag to docstrings that were missing it

This commit is contained in:
ster
2022-10-02 17:52:18 -04:00
committed by GitHub
parent dc34a8f1dc
commit 95b6bd8782
6 changed files with 31 additions and 10 deletions
+3 -1
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.