diff options
author | 2021-02-12 02:09:17 -0800 | |
---|---|---|
committer | 2021-02-12 02:09:17 -0800 | |
commit | 94ad4dd207226d7d1a2b080ffe47352e7c2b9e73 (patch) | |
tree | bb2b28a298f2fe23835d17a2d1b935e3284d6d32 | |
parent | Moved hyperlink to title. (diff) |
Made docstring more specific.
Co-authored-by: Shivansh-007 <[email protected]>
-rw-r--r-- | bot/exts/info/pypi.py | 2 |
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: |