Browse Source

fix: unexpected behaviour on accent_colours

Co-authored-by: Soheab <[email protected]>
pull/10166/head
DA344 1 week ago
committed by GitHub
parent
commit
fe3b596379
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      discord/ui/container.py

2
discord/ui/container.py

@ -151,7 +151,7 @@ class Container(Item[V]):
self.add_item(child)
self.spoiler: bool = spoiler
self._colour = accent_colour or accent_color
self._colour = accent_colour if accent_colour is not None else accent_color
self.row = row
self.id = id

Loading…
Cancel
Save