okay can anyone help me why this isnt working
class SelectMenu(discord.ui.ChannelSelect):
def __init__(self):
discord.ui.ChannelSelect(placeholder="Select an option", max_values=1, min_values=1, channel_types=[discord.ChannelType.text])
super().__init__()
class Select(discord.ui.View):
def __init__(self):
super().__init__()
self.add_item(SelectMenu())