diff options
author | 2021-12-02 11:42:04 +0000 | |
---|---|---|
committer | 2021-12-02 11:42:04 +0000 | |
commit | cdd4067ad7497b48440074494aa4de15a908f7d5 (patch) | |
tree | c0c0c5f3902b5279702f9607ac70f49839b0e700 | |
parent | Make dataclasses hashable, and fix kwarg spelling error (diff) |
use og_blurple in issue embed for consistency
-rw-r--r-- | bot/exts/utilities/githubinfo.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/utilities/githubinfo.py b/bot/exts/utilities/githubinfo.py index ee05497a..b7dbe64d 100644 --- a/bot/exts/utilities/githubinfo.py +++ b/bot/exts/utilities/githubinfo.py @@ -264,7 +264,7 @@ class GithubInfo(commands.Cog): embed = discord.Embed( title=f"`{user_data['login']}`'s GitHub profile info", description=f"```{user_data['bio']}```\n" if user_data["bio"] else "", - colour=discord.Colour.blurple(), + colour=discord.Colour.og_blurple(), url=user_data["html_url"], timestamp=datetime.strptime(user_data["created_at"], "%Y-%m-%dT%H:%M:%SZ") ) @@ -333,7 +333,7 @@ class GithubInfo(commands.Cog): embed = discord.Embed( title=repo_data["name"], description=repo_data["description"], - colour=discord.Colour.blurple(), + colour=discord.Colour.og_blurple(), url=repo_data["html_url"] ) |