From 85f3e11ef1ba2817a3d03ff1e02c1a9cc1b6d082 Mon Sep 17 00:00:00 2001 From: AkshuAgarwal Date: Wed, 28 Jul 2021 23:56:12 +0000 Subject: [PATCH] Fix Example Usage in docs --- discord/abc.py | 1 + 1 file changed, 1 insertion(+) diff --git a/discord/abc.py b/discord/abc.py index e6bb0f5ab..ffaa5feb2 100644 --- a/discord/abc.py +++ b/discord/abc.py @@ -1452,6 +1452,7 @@ class Messageable: This means that both ``with`` and ``async with`` work with this. Example Usage: :: + async with channel.typing(): # simulate something heavy await asyncio.sleep(10)