From 1281a2e5fa5c5f710d89209b9a7781695e02a095 Mon Sep 17 00:00:00 2001 From: DA-344 <108473820+DA-344@users.noreply.github.com> Date: Wed, 14 May 2025 16:37:06 +0200 Subject: [PATCH] chore: black --- discord/ui/view.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/discord/ui/view.py b/discord/ui/view.py index 6f31a65fb..795818841 100644 --- a/discord/ui/view.py +++ b/discord/ui/view.py @@ -793,9 +793,7 @@ class LayoutView(BaseView): # payload instead of in which ActionRow it should be placed on. key = lambda i: i._rendered_row or i._row or sys.maxsize for _, cmps in groupby(self._children, key=key): - components.extend( - c.to_component_dict() for c in cmps - ) + components.extend(c.to_component_dict() for c in cmps) return components