Skip to content

Commit f90a3bc

Browse files
style(pre-commit): auto fixes from pre-commit.com hooks
1 parent b619025 commit f90a3bc

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

discord/ui/action_row.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
from __future__ import annotations
22

3-
from functools import partial
43
from collections.abc import Sequence
4+
from functools import partial
55
from typing import TYPE_CHECKING, ClassVar, Iterator, TypeVar
66

77
from ..components import ActionRow as ActionRowComponent
8-
from ..components import SelectOption, SelectDefaultValue, _component_factory
8+
from ..components import SelectDefaultValue, SelectOption, _component_factory
99
from ..enums import ButtonStyle, ChannelType, ComponentType
1010
from ..utils import find, get
1111
from .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)

discord/ui/label.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
from __future__ import annotations
22

3-
from typing import TYPE_CHECKING, Iterator, TypeVar
43
from collections.abc import Sequence
4+
from typing import TYPE_CHECKING, Iterator, TypeVar
55

66
from ..components import Label as LabelComponent
7-
from ..components import SelectOption, SelectDefaultValue, _component_factory
7+
from ..components import SelectDefaultValue, SelectOption, _component_factory
88
from ..enums import ButtonStyle, ChannelType, ComponentType, InputTextStyle
99
from ..utils import find, get
1010
from .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)

0 commit comments

Comments
 (0)