removed whitespaces

This commit is contained in:
Forevka 2021-07-03 13:00:53 +00:00 committed by GitHub
parent 259987a4aa
commit f83cf4ff96
2 changed files with 5 additions and 5 deletions

View file

@ -309,9 +309,9 @@ class Dispatcher(Router):
:return:
"""
async for update in self._listen_updates(
bot,
polling_timeout=polling_timeout,
backoff_config=backoff_config,
bot,
polling_timeout=polling_timeout,
backoff_config=backoff_config,
allowed_updates=allowed_updates,
):
handle_update = self._process_update(bot=bot, update=update, **kwargs)

View file

@ -5,8 +5,8 @@ from typing import List, cast
from aiogram.dispatcher.dispatcher import Dispatcher
AIOGRAM_INTERNAL_HANDLERS = [
'update',
'error',
'update',
'error',
]