хочу отправить юзеру в лс сообщение по ид и выдает ошибку
AttributeError: 'int' object has no attribute 'send'
@bot.event
async def on_dropdown(inter: disnake.MessageInteraction):
config = configparser.ConfigParser()
guild = inter.guild
selected = inter.data["values"][0]
config.read('user.ini')
user_id = config.getint("User", "id")
if selected == "1":
role = guild.get_role(1244238591752667200)
await user_id.send("Ваша заявка была одобрена")
await inter.send("Заявка одобрена", ephemeral=True)
if selected == "2":
await inter.response.send_modal(modal=modal2())