channel = bot.get_channel(787656357670420500)
await channel.send(embed=embed1)
AttributeError: 'NoneType' object has no attribute 'send'
class MyBot(commands.Bot):
async def on_ready(self):
channel = self.get_channel(787656357670420500)
class MyBot(commands.Bot):
def __init__(self):
channel = self.get_channel(787656357670420500)