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