Update README.md

This commit is contained in:
Klemek
2021-04-09 00:25:24 +02:00
committed by GitHub
parent faf15e9161
commit 16e1cade57
+1 -1
View File
@@ -192,7 +192,7 @@ The function must be exactly named after the event
```python
async def on_ready() -> bool:
print("on_ready")
return False # if True is returned, prevent miniscord handling of the event
return True # if False is returned, prevent miniscord's handling of the event
bot.register_event(on_ready)
```