fix(telegram_bot): fixed syntax error
This commit is contained in:
@@ -1,17 +0,0 @@
|
||||
from aiogram.fsm.state import State, StatesGroup
|
||||
|
||||
|
||||
class CampaignDialogState(StatesGroup):
|
||||
ad_title = State()
|
||||
ad_text = State()
|
||||
impressions_limit = State()
|
||||
clicks_limit = State()
|
||||
cost_per_impression = State()
|
||||
cost_per_click = State()
|
||||
start_date = State()
|
||||
end_date = State()
|
||||
gender = State()
|
||||
age_from = State()
|
||||
age_to = State()
|
||||
location = State()
|
||||
delete_ad_image = State()
|
||||
@@ -4,3 +4,5 @@ from aiogram.fsm.state import State, StatesGroup
|
||||
class CampaignsDailogState(StatesGroup):
|
||||
campaigns = State()
|
||||
campaign = State()
|
||||
campaign_upload_ad_image = State()
|
||||
campaign_edit = State()
|
||||
|
||||
Reference in New Issue
Block a user