From cf4d90db4404d04a8dd3fcb94a4329a24e80b463 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Thu, 2 Sep 2021 04:06:15 +0200 Subject: [PATCH] Remove useless format --- src/main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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():