Spaces:
Sleeping
Sleeping
Captain Ezio
commited on
Commit
·
43963fc
1
Parent(s):
2d262c1
Update start.py
Browse files- Powers/plugins/start.py +3 -3
Powers/plugins/start.py
CHANGED
@@ -109,7 +109,7 @@ async def start(c: Gojo, m: Message):
|
|
109 |
@Gojo.on_callback_query(filters.regex("^start_back$"))
|
110 |
async def start_back(_, q: CallbackQuery):
|
111 |
try:
|
112 |
-
await q.
|
113 |
caption="""Hey there! My name is Gojo ✨.
|
114 |
I'm here to help you manage your groups!
|
115 |
Hit /help to find out more about how to use me in my full potential!
|
@@ -133,7 +133,7 @@ async def commands_menu(_, q: CallbackQuery):
|
|
133 |
],
|
134 |
)
|
135 |
try:
|
136 |
-
await q.
|
137 |
caption="""Hey There! My name is Gojo.
|
138 |
I'm here to help you manage your groups!
|
139 |
Commands available:
|
@@ -230,7 +230,7 @@ async def get_module_info(_, q: CallbackQuery):
|
|
230 |
help_kb = HELP_COMMANDS[module]["buttons"] + [
|
231 |
[("« " + "Back", "commands")],
|
232 |
]
|
233 |
-
await q.
|
234 |
caption=help_msg,
|
235 |
parse_mode="markdown",
|
236 |
reply_markup=ikb(help_kb),
|
|
|
109 |
@Gojo.on_callback_query(filters.regex("^start_back$"))
|
110 |
async def start_back(_, q: CallbackQuery):
|
111 |
try:
|
112 |
+
await q.message.edit_caption(
|
113 |
caption="""Hey there! My name is Gojo ✨.
|
114 |
I'm here to help you manage your groups!
|
115 |
Hit /help to find out more about how to use me in my full potential!
|
|
|
133 |
],
|
134 |
)
|
135 |
try:
|
136 |
+
await q.message.edit_caption(
|
137 |
caption="""Hey There! My name is Gojo.
|
138 |
I'm here to help you manage your groups!
|
139 |
Commands available:
|
|
|
230 |
help_kb = HELP_COMMANDS[module]["buttons"] + [
|
231 |
[("« " + "Back", "commands")],
|
232 |
]
|
233 |
+
await q.message.edit_caption(
|
234 |
caption=help_msg,
|
235 |
parse_mode="markdown",
|
236 |
reply_markup=ikb(help_kb),
|