aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Xithrius <[email protected]>2021-02-12 02:09:17 -0800
committerGravatar GitHub <[email protected]>2021-02-12 02:09:17 -0800
commit94ad4dd207226d7d1a2b080ffe47352e7c2b9e73 (patch)
treebb2b28a298f2fe23835d17a2d1b935e3284d6d32
parentMoved hyperlink to title. (diff)
Made docstring more specific.
Co-authored-by: Shivansh-007 <[email protected]>
-rw-r--r--bot/exts/info/pypi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/info/pypi.py b/bot/exts/info/pypi.py
index c7ec22fc6..79931c665 100644
--- a/bot/exts/info/pypi.py
+++ b/bot/exts/info/pypi.py
@@ -21,7 +21,7 @@ class PyPi(Cog):
@command(name="pypi", aliases=("package", "pack"))
async def get_package_info(self, ctx: Context, package: str) -> None:
- """Getting information about a specific package."""
+ """Provide information about a specific package from PyPI."""
embed = Embed(title=choice(NEGATIVE_REPLIES), colour=Colours.soft_red)
async with self.bot.http_session.get(URL.format(package=package)) as response: