File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
interactions/models/discord Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change 99 timestamp_converter ,
1010)
1111from interactions .client .mixins .serialization import DictSerializationMixin
12- from interactions .client .utils .serializer import no_export_meta
1312from interactions .models .discord .emoji import PartialEmoji , process_emoji
1413from interactions .models .discord .enums import PollLayoutType
1514from interactions .models .discord .timestamp import Timestamp
@@ -93,7 +92,7 @@ class Poll(DictSerializationMixin):
9392 """Each of the answers available in the poll, up to 10."""
9493 expiry : Timestamp = attrs .field (repr = False , default = MISSING , converter = optional (timestamp_converter ))
9594 """Number of hours the poll is open for, up to 32 days."""
96- allow_multiselect : bool = attrs .field (repr = False , default = False , metadata = no_export_meta )
95+ allow_multiselect : bool = attrs .field (repr = False , default = False )
9796 """Whether a user can select multiple answers."""
9897 layout_type : PollLayoutType = attrs .field (repr = False , default = PollLayoutType .DEFAULT , converter = PollLayoutType )
9998 """The layout type of the poll."""
You can’t perform that action at this time.
0 commit comments