We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e6ecc9 commit 4140213Copy full SHA for 4140213
twitchio/models.py
@@ -1802,7 +1802,7 @@ def __init__(self, data: dict):
1802
self.title: str = data["title"]
1803
self.votes: int = data["votes"]
1804
self.channel_points_votes: int = data["channel_points_votes"]
1805
- self.bits_votes: int = data["bits_votes"]
+ self.bits_votes: int = 0
1806
1807
def __repr__(self):
1808
return f"<PollChoice id={self.id} title={self.title} votes={self.votes} channel_points_votes={self.channel_points_votes} bits_votes={self.bits_votes}>"
0 commit comments