diff options
author | 2021-08-07 23:50:25 +0200 | |
---|---|---|
committer | 2021-08-07 23:50:25 +0200 | |
commit | e888b345deae3025704771e53494e694ce146fe2 (patch) | |
tree | 724599f8d5f9ab8a255255c8cef2a05a1d288396 /bot/exts | |
parent | Improve code indentation in the Githubinfo Cog (diff) |
Fine tune indenting in GithubInfo cog
Diffstat (limited to 'bot/exts')
-rw-r--r-- | bot/exts/evergreen/githubinfo.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bot/exts/evergreen/githubinfo.py b/bot/exts/evergreen/githubinfo.py index 7bc1288d..012cc274 100644 --- a/bot/exts/evergreen/githubinfo.py +++ b/bot/exts/evergreen/githubinfo.py @@ -91,8 +91,10 @@ class GithubInfo(commands.Cog): ) if user_data["type"] == "User": - embed.add_field(name="Gists", value=f"[{gists}](https://gist.github.com/" - f"{quote_plus(username, safe='')}"f")") + embed.add_field( + name="Gists", + value=f"[{gists}](https://gist.github.com/"f"{quote_plus(username, safe='')}"f")" + ) embed.add_field( name=f"Organization{'s' if len(orgs)!=1 else ''}", |