Remove useless format
This commit is contained in:
parent
56f5d23e20
commit
cf4d90db44
1 changed files with 3 additions and 3 deletions
|
@ -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():
|
||||||
|
|
Reference in a new issue