diff options
author | 2021-08-07 23:27:36 +0200 | |
---|---|---|
committer | 2021-08-07 23:27:36 +0200 | |
commit | 45f6ff5d97d79638418f17617edac36fac0bdf9a (patch) | |
tree | f1e31f1824ebc9c2ceb34d95e35b11134f235289 | |
parent | Improve code consistency in Movie, Wikipedia and Hactoberstats Cogs (diff) |
Improve code indentation in the Githubinfo Cog
-rw-r--r-- | bot/exts/evergreen/githubinfo.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/evergreen/githubinfo.py b/bot/exts/evergreen/githubinfo.py index b0eff896..7bc1288d 100644 --- a/bot/exts/evergreen/githubinfo.py +++ b/bot/exts/evergreen/githubinfo.py @@ -91,8 +91,8 @@ class GithubInfo(commands.Cog): ) if user_data["type"] == "User": - embed.add_field(name="Gists", value=f"[{gists}](https://gist.github.com/{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 ''}", |