From 00a2046b76dffc0d1140ec6104c2f62de196e23f Mon Sep 17 00:00:00 2001 From: Poolitzer Date: Sat, 24 Jun 2023 09:43:02 +0200 Subject: [PATCH] Revert --- Introduction-to-the-API.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Introduction-to-the-API.md b/Introduction-to-the-API.md index 839ddcf..aa61a6e 100644 --- a/Introduction-to-the-API.md +++ b/Introduction-to-the-API.md @@ -28,8 +28,7 @@ import telegram async def main(): bot = telegram.Bot("TOKEN") async with bot: - infos = await bot.get_me() - print(infos) + print(await bot.get_me()) if __name__ == '__main__':