From 3de1397387f1d767f96d3608cdf18a41ef26ee1c Mon Sep 17 00:00:00 2001 From: ape364 Date: Mon, 9 Jul 2018 23:25:13 +0500 Subject: [PATCH] Update quick_start.rst replace tab with 4 spaces --- docs/source/quick_start.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/quick_start.rst b/docs/source/quick_start.rst index 9f35c45a..bb052bb5 100644 --- a/docs/source/quick_start.rst +++ b/docs/source/quick_start.rst @@ -27,14 +27,14 @@ Next step: interaction with bots starts with one command. Register your first co @dp.message_handler(commands=['start', 'help']) async def send_welcome(message: types.Message): - await message.reply("Hi!\nI'm EchoBot!\nPowered by aiogram.") + await message.reply("Hi!\nI'm EchoBot!\nPowered by aiogram.") Last step: run long polling. .. code-block:: python3 if __name__ == '__main__': - executor.start_polling(dp) + executor.start_polling(dp) Summary ------- @@ -50,7 +50,7 @@ Summary @dp.message_handler(commands=['start', 'help']) async def send_welcome(message: types.Message): - await message.reply("Hi!\nI'm EchoBot!\nPowered by aiogram.") + await message.reply("Hi!\nI'm EchoBot!\nPowered by aiogram.") if __name__ == '__main__': - executor.start_polling(dp) + executor.start_polling(dp)