9 lines
208 B
Python
9 lines
208 B
Python
import disnake
|
|
import disnake.ui
|
|
|
|
c = disnake.ui.Container()
|
|
print(f"Container attributes: {dir(c)}")
|
|
try:
|
|
print(f"Children: {c.children}")
|
|
except Exception as e:
|
|
print(f"No children attribute: {e}")
|