Skip to content

Commit 873a41e

Browse files
committed
polls state storage typehint fix
1 parent f2beeaf commit 873a41e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

discord/state.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ def clear(self, *, views: bool = True) -> None:
276276
self._emojis: dict[int, Emoji] = {}
277277
self._stickers: dict[int, GuildSticker] = {}
278278
self._guilds: dict[int, Guild] = {}
279-
self._polls: dict[int, Guild] = {}
279+
self._polls: dict[int, Poll] = {}
280280
if views:
281281
self._view_store: ViewStore = ViewStore(self)
282282
self._modal_store: ModalStore = ModalStore(self)

0 commit comments

Comments
 (0)