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 9
9
timestamp_converter ,
10
10
)
11
11
from interactions .client .mixins .serialization import DictSerializationMixin
12
- from interactions .client .utils .serializer import no_export_meta
13
12
from interactions .models .discord .emoji import PartialEmoji , process_emoji
14
13
from interactions .models .discord .enums import PollLayoutType
15
14
from interactions .models .discord .timestamp import Timestamp
@@ -93,7 +92,7 @@ class Poll(DictSerializationMixin):
93
92
"""Each of the answers available in the poll, up to 10."""
94
93
expiry : Timestamp = attrs .field (repr = False , default = MISSING , converter = optional (timestamp_converter ))
95
94
"""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 )
97
96
"""Whether a user can select multiple answers."""
98
97
layout_type : PollLayoutType = attrs .field (repr = False , default = PollLayoutType .DEFAULT , converter = PollLayoutType )
99
98
"""The layout type of the poll."""
You can’t perform that action at this time.
0 commit comments