So I have my Discord bot in one file (bot.py) and since it has many commands, my help command has to explain every single command as the bot aims to be functional and also very user-friendly. As you can imagine, this takes up a lot of space. What I would like to do is have the main commands in bot.py, and have all the help commands in a separate file (help.py) Is this possible? If so, how?