run black isort

This commit is contained in:
latan 2023-11-13 12:27:15 +02:00
parent 695c0cb7d8
commit 26199d5239
2 changed files with 2 additions and 2 deletions

View file

@ -109,7 +109,7 @@ class TelegramEventObserver:
Handler will be called when all its filters are pass.
"""
for handler in self.handlers:
kwargs['handler'] = handler
kwargs["handler"] = handler
result, data = await handler.check(event, **kwargs)
if result:
kwargs.update(data)

View file

@ -36,6 +36,7 @@ from aiogram.methods import (
UnpinChatMessage,
)
from aiogram.types import (
UNSET_PARSE_MODE,
Animation,
Audio,
Chat,
@ -75,7 +76,6 @@ from aiogram.types import (
VideoNote,
Voice,
WebAppData,
UNSET_PARSE_MODE,
)
from aiogram.types.message import ContentType, Message