Remove useless format

This commit is contained in:
Mylloon 2021-09-02 04:06:15 +02:00
parent 56f5d23e20
commit cf4d90db44

View file

@ -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():