BinaryONe commited on
Commit
a43ac81
·
1 Parent(s): b345ea7

Adding Poll In Upload

Browse files
FileStream/bot/plugins/FileHandlers/callback.py CHANGED
@@ -179,11 +179,11 @@ async def cb_data(bot: Client, update: CallbackQuery):
179
  id=FileStream.rnd_id(),
180
  question="Is this a poll question?",
181
  answers=[
182
- PollAnswer("Movie", bytes([0])),
183
- PollAnswer("WebSeries", bytes([1])),
184
- PollAnswer("Anime", bytes([2])),
185
- PollAnswer("Documentary", bytes([3])),
186
- PollAnswer("Regular", bytes([4]))
187
  ],
188
  multiple_choice=True,
189
  quiz=False,
 
179
  id=FileStream.rnd_id(),
180
  question="Is this a poll question?",
181
  answers=[
182
+ PollAnswer("Movie"),
183
+ PollAnswer("WebSeries"),
184
+ PollAnswer("Anime"),
185
+ PollAnswer("Documentary"),
186
+ PollAnswer("Regular")
187
  ],
188
  multiple_choice=True,
189
  quiz=False,