9 lines
272 B
Python
9 lines
272 B
Python
|
|
import disnake
|
||
|
|
print(f"disnake.TextStyle: {hasattr(disnake, 'TextStyle')}")
|
||
|
|
print(f"disnake.TextInputStyle: {hasattr(disnake, 'TextInputStyle')}")
|
||
|
|
try:
|
||
|
|
import disnake.ui
|
||
|
|
print(f"disnake.ui.TextInputStyle: {hasattr(disnake.ui, 'TextInputStyle')}")
|
||
|
|
except:
|
||
|
|
pass
|