wow-token-app-bot/token_bot/ui/select_menus/region_menu.py
Emily Doherty 34badf17eb Once and for all reformat.
Will be using black code formatter
2024-12-08 17:07:26 -08:00

13 lines
217 B
Python

from interactions import StringSelectMenu
REGION_MENU = StringSelectMenu(
"US",
"EU",
"KR",
"TW",
placeholder="Select a region",
min_values=1,
max_values=1,
custom_id="region_menu",
)