From 95a22ced02815ea97b335fe7054e57db7858e2e0 Mon Sep 17 00:00:00 2001 From: DA344 <108473820+DA-344@users.noreply.github.com> Date: Thu, 24 Apr 2025 22:43:46 +0200 Subject: [PATCH] . --- discord/ui/container.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/ui/container.py b/discord/ui/container.py index a804d1a91..617450773 100644 --- a/discord/ui/container.py +++ b/discord/ui/container.py @@ -291,7 +291,7 @@ class Container(Item[V]): @classmethod def from_component(cls, component: ContainerComponent) -> Self: return cls( - children=[_component_to_item(c) for c in component.children], + *[_component_to_item(c) for c in component.children], accent_colour=component.accent_colour, spoiler=component.spoiler, id=component.id,