diff --git a/readthedocs/basic/signing-in.rst b/readthedocs/basic/signing-in.rst index 05183f5c..5edb22a5 100644 --- a/readthedocs/basic/signing-in.rst +++ b/readthedocs/basic/signing-in.rst @@ -58,7 +58,7 @@ We can finally write some code to log into our account! async def main(): # The first parameter is the .session file name (absolute paths allowed) - async with TelegramClient('anon', api_id, api_hash).start() as client: + async with await TelegramClient('anon', api_id, api_hash).start() as client: await client.send_message('me', 'Hello, myself!') asyncio.run(main())