Refactor: Clean up code formatting for consistency

This commit is contained in:
latan 2023-08-10 10:49:34 +03:00
parent 77dc4e7752
commit 2e185952cf
3 changed files with 2 additions and 3 deletions

View file

@ -16,7 +16,6 @@ async def main() -> None:
dp.include_routers(
handlers.start.start_router,
handlers.echo.echo_router,
)
# Initialize Bot instance with a default parse mode which will be passed to all API calls

View file

@ -1,2 +1 @@
from . import start
from . import echo
from . import echo, start

View file

@ -5,6 +5,7 @@ from aiogram.types import Message
# For each module with handlers we can create a separate router.
echo_router = Router()
@echo_router.message()
async def echo_handler(message: Message) -> None:
"""