8 lines
190 B
Python
8 lines
190 B
Python
|
|
import disnake
|
||
|
|
import inspect
|
||
|
|
|
||
|
|
try:
|
||
|
|
print(f"Section init signature: {inspect.signature(disnake.ui.Section.__init__)}")
|
||
|
|
except Exception as e:
|
||
|
|
print(f"Error inspecting Section: {e}")
|