PEP
This commit is contained in:
@@ -1,11 +1,8 @@
|
||||
from aiogram.dispatcher.filters.state import StatesGroup, State
|
||||
|
||||
|
||||
class Checkout(StatesGroup):
|
||||
first_name = State()
|
||||
last_name = State()
|
||||
phone_number = State()
|
||||
address = State()
|
||||
|
||||
loaded = State()
|
||||
finish = State()
|
||||
|
||||
|
@@ -1,9 +1,8 @@
|
||||
from aiogram.dispatcher.filters.state import StatesGroup, State
|
||||
|
||||
|
||||
class Post(StatesGroup):
|
||||
name = State()
|
||||
description = State()
|
||||
price = State()
|
||||
image = State()
|
||||
|
||||
finish = State()
|
||||
|
@@ -1,5 +1,6 @@
|
||||
from aiogram.dispatcher.filters.state import StatesGroup, State
|
||||
|
||||
|
||||
class UserState(StatesGroup):
|
||||
confirm = State()
|
||||
|
||||
|
Reference in New Issue
Block a user