diff options
author | 2022-02-23 00:59:09 +0000 | |
---|---|---|
committer | 2022-02-24 17:32:48 +0000 | |
commit | aa2f9685c29d46a2666654c545d4461763c903b6 (patch) | |
tree | 20680504d6049f1f306e06fbb37f99293e8e78f2 /botcore/utils/scheduling.py | |
parent | Breaking change notice due to regex move (diff) |
Alter docstrings to look better in autodocs
Diffstat (limited to 'botcore/utils/scheduling.py')
-rw-r--r-- | botcore/utils/scheduling.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/botcore/utils/scheduling.py b/botcore/utils/scheduling.py index 947df0d9..d6969302 100644 --- a/botcore/utils/scheduling.py +++ b/botcore/utils/scheduling.py @@ -215,7 +215,7 @@ def create_task( **kwargs, ) -> asyncio.Task: """ - Wrapper for creating asyncio `Tasks` which logs exceptions raised in the task. + Wrapper for creating an :obj:`asyncio.Task` which logs exceptions raised in the task. If the loop kwarg is provided, the task is created from that event loop, otherwise the running loop is used. |