BinaryONe commited on
Commit
688ccbe
·
1 Parent(s): 55d103c

changes 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(text="Movie", option=bytes([0])),
183
- PollAnswer(text="WebSeries", option=bytes([1])),
184
- PollAnswer(text="Anime", option=bytes([2])),
185
- PollAnswer(text="Documentary", option=bytes([3])),
186
- PollAnswer(text="Regular", option=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", option=bytes([0])),
183
+ PollAnswer("WebSeries", option=bytes([1])),
184
+ PollAnswer("Anime", option=bytes([2])),
185
+ PollAnswer("Documentary", option=bytes([3])),
186
+ PollAnswer("Regular", option=bytes([4]))
187
  ],
188
  multiple_choice=True,
189
  quiz=False,