Fix typing

pull/134/head
stijndcl 2022-09-22 17:01:56 +02:00
parent f049f1c80b
commit 6cfe788df5
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ __all__ = ["create_logging_embed"]
def create_logging_embed(level: int, message: str) -> discord.Embed:
"""Create an embed to send to the logging channel"""
colours = {
logging.DEBUG: discord.Colour.light_gray(),
logging.DEBUG: discord.Colour.light_gray,
logging.ERROR: discord.Colour.red(),
logging.INFO: discord.Colour.blue(),
logging.WARNING: discord.Colour.yellow(),