aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar ks129 <[email protected]>2020-05-15 09:20:47 +0300
committerGravatar ks129 <[email protected]>2020-05-15 09:20:47 +0300
commit811ee70da17654a00d6ae3fbf32261b3e4f4c784 (patch)
tree123219fe5621330583e26601acb01325b211166f
parentPEP Improvisations: Fix `get_pep_zero_embed` docstring (diff)
PEP Improvisations: Fix `get_pep_embed` docstring
-rw-r--r--bot/cogs/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/utils.py b/bot/cogs/utils.py
index 09c17dbff..6871ba44c 100644
--- a/bot/cogs/utils.py
+++ b/bot/cogs/utils.py
@@ -245,7 +245,7 @@ class Utils(Cog):
@async_cache(arg_offset=1)
async def get_pep_embed(self, pep_nr: int) -> Tuple[Embed, bool]:
- """Fetch, generate and return PEP embed. Implement `async_cache`."""
+ """Fetch, generate and return PEP embed."""
if pep_nr not in self.peps:
log.trace(f"PEP {pep_nr} was not found")
not_found = f"PEP {pep_nr} does not exist."