Spaces:
Paused
Paused
Captain Ezio
commited on
Commit
·
d61d470
1
Parent(s):
45cd678
Update start.py
Browse files- Powers/plugins/start.py +2 -2
Powers/plugins/start.py
CHANGED
|
@@ -148,7 +148,7 @@ Join my [News Channel](http://t.me/gojo_updates) to get information on all the l
|
|
| 148 |
async def commands_menu(_, q: CallbackQuery):
|
| 149 |
keyboard = ikb(
|
| 150 |
[
|
| 151 |
-
|
| 152 |
[(f"« Back", "start_back")],
|
| 153 |
],
|
| 154 |
)
|
|
@@ -223,7 +223,7 @@ async def help_menu(_, m: Message):
|
|
| 223 |
if chat_type == "private":
|
| 224 |
keyboard = ikb(
|
| 225 |
[
|
| 226 |
-
|
| 227 |
[("« Back", "start_back")],
|
| 228 |
],
|
| 229 |
)
|
|
|
|
| 148 |
async def commands_menu(_, q: CallbackQuery):
|
| 149 |
keyboard = ikb(
|
| 150 |
[
|
| 151 |
+
*(await gen_cmds_kb(q)),
|
| 152 |
[(f"« Back", "start_back")],
|
| 153 |
],
|
| 154 |
)
|
|
|
|
| 223 |
if chat_type == "private":
|
| 224 |
keyboard = ikb(
|
| 225 |
[
|
| 226 |
+
*(await gen_cmds_kb(m)),
|
| 227 |
[("« Back", "start_back")],
|
| 228 |
],
|
| 229 |
)
|