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 9a6cbff commit 49b9242Copy full SHA for 49b9242
discord/webhook/async_.py
@@ -803,6 +803,12 @@ def create_user(self, data):
803
# state parameter is artificial
804
return BaseUser(state=self, data=data) # type: ignore
805
806
+ def store_poll(self, poll: Poll, message_id: int):
807
+ if self._parent is not None:
808
+ return self._parent.store_poll(poll, message_id)
809
+ # state parameter is artificial
810
+ return None
811
+
812
@property
813
def http(self):
814
if self._parent is not None:
0 commit comments