We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0022f1 commit e830df4Copy full SHA for e830df4
discord/ui/designer_view.py
@@ -373,7 +373,9 @@ def is_components_v2(self) -> bool:
373
374
A view containing V2 components cannot be sent alongside message content or embeds.
375
"""
376
- return len(self.children) > 5 or any(i.is_components_v2() for i in self.children)
+ return len(self.children) > 5 or any(
377
+ i.is_components_v2() for i in self.children
378
+ )
379
380
def disable_all_items(self, *, exclusions: list[Item[V]] | None = None) -> None:
381
0 commit comments