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 @client.event
async def on_connect(): async def on_connect():
"""Triggered when the bot is connected to Discord""" """Triggered when the bot is connected to Discord"""
print(f"Connecté !") print("Connecté !")
@client.event @client.event
async def on_disconnect(): async def on_disconnect():
"""Triggered when the bot is disconnected to Discord""" """Triggered when the bot is disconnected to Discord"""
print(f"Déconnecté.") print("Déconnecté.")
@client.event @client.event
async def on_resumed(): async def on_resumed():
"""Triggered when the bot is reconnected to Discord""" """Triggered when the bot is reconnected to Discord"""
print(f"Reconnecté !") print("Reconnecté !")
@client.event @client.event
async def on_ready(): async def on_ready():