Spaces:
Sleeping
Sleeping
Captain Ezio
commited on
Commit
·
c8942a5
1
Parent(s):
d9db4a8
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) # InlineKeyboardButton
|
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)
|