Skip to content

Commit 6d6ce3e

Browse files
authored
eh..... going through it... don't judge yet................
1 parent 54afda3 commit 6d6ce3e

File tree

3 files changed

+439
-4
lines changed

3 files changed

+439
-4
lines changed

discord/ui/action_row.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@
1111
from .file import File
1212
from .item import Item, ItemCallbackType
1313
from .select import Select
14-
from .view import _walk_all_components
1514

16-
__all__ = ("Container",)
15+
__all__ = ("ActionRow",)
1716

1817
if TYPE_CHECKING:
1918
from typing_extensions import Self
@@ -334,7 +333,7 @@ def to_component_dict(self) -> ActionRowPayload:
334333

335334
@classmethod
336335
def from_component(cls: type[A], component: ActionRowComponent) -> A:
337-
from .view import _component_to_item
336+
from .view import _component_to_item, _walk_all_components
338337

339338
items = [
340339
_component_to_item(c) for c in _walk_all_components(component.components)

0 commit comments

Comments
 (0)