diff options
author | 2021-02-16 18:03:31 -0800 | |
---|---|---|
committer | 2021-02-16 18:03:31 -0800 | |
commit | 6aae339f33ee471bafe9338db5046b774c6b4aad (patch) | |
tree | e75886733825350749aa8e88832e59c557390bf2 /bot/exts/evergreen/pythonfacts.py | |
parent | Update docstring for Cog (diff) |
Change Docstring for command
Co-authored-by: Shivansh-007 <[email protected]>
Diffstat (limited to 'bot/exts/evergreen/pythonfacts.py')
-rw-r--r-- | bot/exts/evergreen/pythonfacts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/pythonfacts.py b/bot/exts/evergreen/pythonfacts.py index dbc38ef4..c0cdf111 100644 --- a/bot/exts/evergreen/pythonfacts.py +++ b/bot/exts/evergreen/pythonfacts.py @@ -16,7 +16,7 @@ class PythonFacts(commands.Cog): @commands.command(name='pythonfact', aliases=['pyfact']) async def get_python_fact(self, ctx: commands.Context) -> None: - """Gives a Random fun fact about Python.""" + """Sends a Random fun fact about Python.""" await ctx.send(embed=discord.Embed(title='Python Facts', description=random.choice(FACTS))) |