diff options
| author | 2019-11-15 13:10:19 +0100 | |
|---|---|---|
| committer | 2019-11-15 13:10:19 +0100 | |
| commit | f212ddeea4de54d6eb75081c13162c2ad64bfeff (patch) | |
| tree | 82ae20cbbbf05cf53956a3df78bed7469d652c98 | |
| parent | Adjust code style and comments (diff) | |
join extra newline
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 | 
