This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Author | Quote | |
|---|---|---|
| Thomas Edison | Genius is one percent inspiration and ninety-nine percent perspiration. | |
| Yogi Berra | You can observe a lot just by watching. | |
| Abraham Lincoln | A house divided against itself cannot stand. | |
| Johann Wolfgang von Goethe | Difficulties increase the nearer we get to the goal. | |
| Byron Pulsifer | Fate is in your hands and no one elses | |
| Lao Tzu | Be the chief but never the lord. | |
| Carl Sandburg | Nothing happens unless first we dream. | |
| Aristotle | Well begun is half done. | |
| Yogi Berra | Life is a learning experience, only if you learn. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import discord | |
| from discord import app_commands | |
| from discord.ext import commands | |
| class MyCog(commands.Cog): | |
| def __init__(self, bot: commands.Bot) -> None: | |
| self.bot = bot | |
| @app_commands.command(name="command-1") | |
| async def my_command(self, interaction: discord.Interaction) -> None: |