File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 11from __future__ import annotations
22
3- from functools import partial
43from collections .abc import Sequence
4+ from functools import partial
55from typing import TYPE_CHECKING , ClassVar , Iterator , TypeVar
66
77from ..components import ActionRow as ActionRowComponent
8- from ..components import SelectOption , SelectDefaultValue , _component_factory
8+ from ..components import SelectDefaultValue , SelectOption , _component_factory
99from ..enums import ButtonStyle , ChannelType , ComponentType
1010from ..utils import find , get
1111from .button import Button
@@ -322,7 +322,7 @@ def add_select(
322322 channel_types = channel_types or [],
323323 disabled = disabled ,
324324 id = id ,
325- default_values = default_values
325+ default_values = default_values ,
326326 )
327327
328328 return self .add_item (select )
Original file line number Diff line number Diff line change 11from __future__ import annotations
22
3- from typing import TYPE_CHECKING , Iterator , TypeVar
43from collections .abc import Sequence
4+ from typing import TYPE_CHECKING , Iterator , TypeVar
55
66from ..components import Label as LabelComponent
7- from ..components import SelectOption , SelectDefaultValue , _component_factory
7+ from ..components import SelectDefaultValue , SelectOption , _component_factory
88from ..enums import ButtonStyle , ChannelType , ComponentType , InputTextStyle
99from ..utils import find , get
1010from .button import Button
@@ -293,7 +293,7 @@ def set_select(
293293 channel_types = channel_types or [],
294294 required = required ,
295295 id = id ,
296- default_values = default_values
296+ default_values = default_values ,
297297 )
298298
299299 return self .set_item (select )
You can’t perform that action at this time.
0 commit comments