mirror of
https://github.com/stijndcl/didier.git
synced 2026-04-20 05:55:48 +02:00
Fix typing
This commit is contained in:
parent
f049f1c80b
commit
6cfe788df5
1 changed files with 1 additions and 1 deletions
|
|
@ -8,7 +8,7 @@ __all__ = ["create_logging_embed"]
|
||||||
def create_logging_embed(level: int, message: str) -> discord.Embed:
|
def create_logging_embed(level: int, message: str) -> discord.Embed:
|
||||||
"""Create an embed to send to the logging channel"""
|
"""Create an embed to send to the logging channel"""
|
||||||
colours = {
|
colours = {
|
||||||
logging.DEBUG: discord.Colour.light_gray(),
|
logging.DEBUG: discord.Colour.light_gray,
|
||||||
logging.ERROR: discord.Colour.red(),
|
logging.ERROR: discord.Colour.red(),
|
||||||
logging.INFO: discord.Colour.blue(),
|
logging.INFO: discord.Colour.blue(),
|
||||||
logging.WARNING: discord.Colour.yellow(),
|
logging.WARNING: discord.Colour.yellow(),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue