Spaces:
Running
Running
BinaryONe
commited on
Commit
·
a3b0133
1
Parent(s):
b6e4a19
Adding Poll In Upload
Browse files
FileStream/bot/plugins/FileHandlers/callback.py
CHANGED
|
@@ -191,8 +191,12 @@ async def cb_data(bot: Client, update: CallbackQuery):
|
|
| 191 |
PollAnswer(text="Anime", option=bytes([3])),
|
| 192 |
PollAnswer(text="Documentary", option=bytes([4]))
|
| 193 |
],
|
|
|
|
|
|
|
| 194 |
multiple_choice=True,
|
| 195 |
-
quiz=False,
|
|
|
|
|
|
|
| 196 |
),
|
| 197 |
)
|
| 198 |
)
|
|
|
|
| 191 |
PollAnswer(text="Anime", option=bytes([3])),
|
| 192 |
PollAnswer(text="Documentary", option=bytes([4]))
|
| 193 |
],
|
| 194 |
+
closed=False,
|
| 195 |
+
public_voters=True,
|
| 196 |
multiple_choice=True,
|
| 197 |
+
quiz=False,
|
| 198 |
+
close_period=None,
|
| 199 |
+
close_date=None
|
| 200 |
),
|
| 201 |
)
|
| 202 |
)
|