diff --git a/Event-Handles.md b/Event-Handles.md index 77ea5b6..899a8db 100644 --- a/Event-Handles.md +++ b/Event-Handles.md @@ -4,8 +4,9 @@ To handle the event can use `on_user()` decorator ssh = Server() @ssh.on_user("...") -def ...(channel, data, client): +def ...(...output...): ... + return ..return.. ```