Skip to content

Commit

Permalink
Update message.py (#603)
Browse files Browse the repository at this point in the history
Fixed syntax bug, added comma
  • Loading branch information
1ort committed Jun 13, 2021
1 parent f20e6ca commit c42b7e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiogram/types/message.py
Original file line number Diff line number Diff line change
Expand Up @@ -2933,7 +2933,7 @@ async def send_copy(
question=self.poll.question,
options=[option.text for option in self.poll.options],
is_anonymous=self.poll.is_anonymous,
allows_multiple_answers=self.poll.allows_multiple_answers
allows_multiple_answers=self.poll.allows_multiple_answers,
**kwargs,
)
elif self.dice:
Expand Down

0 comments on commit c42b7e4

Please sign in to comment.