Spaces:
Paused
Paused
Captain Ezio
commited on
Commit
·
b171de0
1
Parent(s):
86e32f1
Update kbhelpers.py
Browse files
Powers/utils/kbhelpers.py
CHANGED
|
@@ -8,7 +8,7 @@ def ikb(rows=None):
|
|
| 8 |
for row in rows:
|
| 9 |
line = []
|
| 10 |
for button in row:
|
| 11 |
-
button = btn(*button)
|
| 12 |
line.append(button)
|
| 13 |
lines.append(line)
|
| 14 |
return InlineKeyboardMarkup(inline_keyboard=lines)
|
|
|
|
| 8 |
for row in rows:
|
| 9 |
line = []
|
| 10 |
for button in row:
|
| 11 |
+
button = btn(*button) # InlineKeyboardButton
|
| 12 |
line.append(button)
|
| 13 |
lines.append(line)
|
| 14 |
return InlineKeyboardMarkup(inline_keyboard=lines)
|