diff --git a/src/main.py b/src/main.py index 7ff7247..bac5bc9 100644 --- a/src/main.py +++ b/src/main.py @@ -31,17 +31,17 @@ print("Terminé !") @client.event async def on_connect(): """Triggered when the bot is connected to Discord""" - print(f"Connecté !") + print("Connecté !") @client.event async def on_disconnect(): """Triggered when the bot is disconnected to Discord""" - print(f"Déconnecté.") + print("Déconnecté.") @client.event async def on_resumed(): """Triggered when the bot is reconnected to Discord""" - print(f"Reconnecté !") + print("Reconnecté !") @client.event async def on_ready():