aboutsummaryrefslogtreecommitdiffstats
path: root/botcore/utils/scheduling.py
diff options
context:
space:
mode:
authorGravatar Hassan Abouelela <[email protected]>2022-06-26 19:23:46 +0400
committerGravatar Hassan Abouelela <[email protected]>2022-06-26 20:17:26 +0400
commitf17f947006ae55f3baca2eeec7ce804dbfdac238 (patch)
tree7fccd43d33013ae9a4d18093a6fb04708f5aa9c0 /botcore/utils/scheduling.py
parentFix Docstring For Role Change Wrapper Util (diff)
Fix Incorrect Typehints & Docstrings
Signed-off-by: Hassan Abouelela <[email protected]>
Diffstat (limited to 'botcore/utils/scheduling.py')
-rw-r--r--botcore/utils/scheduling.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/botcore/utils/scheduling.py b/botcore/utils/scheduling.py
index 164f6b10..d9c3937a 100644
--- a/botcore/utils/scheduling.py
+++ b/botcore/utils/scheduling.py
@@ -209,7 +209,7 @@ class Scheduler:
def create_task(
- coro: typing.Awaitable,
+ coro: typing.Coroutine,
*,
suppressed_exceptions: tuple[typing.Type[Exception]] = (),
event_loop: typing.Optional[asyncio.AbstractEventLoop] = None,