import discord from os import listdir class Client(discord.Client): async def on_ready(self): print("Logged on as", self.user) channel = self.get_channel(373273190547324928) message = await channel.fetch_message(562295275184455720) # await message.pin() await message.add_reaction("📌") await self.logout() client = Client() client.run(open("token").read().strip())