import discord class Extension: def __init__(self, core): @core.tree.command(name = "kick", description = "Кикнуть игрока") @discord.app_commands.describe(profile=core.ANY_INPUT, reason="причина") async def kick_player( interaction: discord.Interaction, profile: str, reason: str = "" ): await interaction.response.defer(thinking=True) steam64 = await core.GetSteam64OfDiscord(interaction.user) player = await core.GetPlayer(profile, steam64, False) return await interaction.followup.send(f'{await player.kick(reason)}', ephemeral=False)