diff options
Diffstat (limited to '')
| -rw-r--r-- | bot/cogs/doc.py | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/bot/cogs/doc.py b/bot/cogs/doc.py index b82eac5fe..20bc010d9 100644 --- a/bot/cogs/doc.py +++ b/bot/cogs/doc.py @@ -336,8 +336,7 @@ class Doc(commands.Cog):          )          # Show all symbols with the same name that were renamed in the footer.          embed.set_footer( -            text=", ".join(renamed for renamed in self.renamed_symbols - {symbol} -                           if renamed.endswith(f".{symbol}")) +            text=", ".join(renamed for renamed in self.renamed_symbols - {symbol} if renamed.endswith(f".{symbol}"))          )          return embed | 
