chore: Code refactoring and improvements

This commit is contained in:
ITQ
2024-03-22 00:16:12 +03:00
parent b32add6d07
commit 013d04261b
10 changed files with 82 additions and 151 deletions
+21
View File
@@ -0,0 +1,21 @@
__all__ = ("RegistrationForm", "UserAltering")
from aiogram.fsm.state import State, StatesGroup
class RegistrationForm(StatesGroup):
previous_message_id = State()
username = State()
age = State()
bio = State()
sex = State()
location = State()
class UserAltering(StatesGroup):
column = State()
value = State()
message_id = State()
input_message_id = State()
previous_message_id = State()
successfully = State()