mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Reformat code
This commit is contained in:
parent
77427ca0ec
commit
5d168b369f
4 changed files with 22 additions and 15 deletions
|
|
@ -4,13 +4,19 @@ from dataclasses import dataclass, field
|
|||
from os import getenv
|
||||
from typing import Any
|
||||
|
||||
from aiogram import Router, html, F, Dispatcher, Bot
|
||||
from aiogram import Bot, Dispatcher, F, Router, html
|
||||
from aiogram.filters import Command
|
||||
from aiogram.fsm.context import FSMContext
|
||||
from aiogram.fsm.scene import Scene, on, SceneRegistry, ScenesManager
|
||||
from aiogram.fsm.scene import Scene, SceneRegistry, ScenesManager, on
|
||||
from aiogram.fsm.storage.memory import SimpleEventIsolation
|
||||
from aiogram.types import Message, KeyboardButton, ReplyKeyboardRemove
|
||||
from aiogram.utils.formatting import as_section, as_numbered_list, Bold, as_list, as_key_value
|
||||
from aiogram.types import KeyboardButton, Message, ReplyKeyboardRemove
|
||||
from aiogram.utils.formatting import (
|
||||
Bold,
|
||||
as_key_value,
|
||||
as_list,
|
||||
as_numbered_list,
|
||||
as_section,
|
||||
)
|
||||
from aiogram.utils.keyboard import ReplyKeyboardBuilder
|
||||
|
||||
TOKEN = getenv("BOT_TOKEN")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue