Skip to content

Commit

Permalink
docs: Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
YuukanOO committed Apr 16, 2019
1 parent 21335ae commit a03c327
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pytlas/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,9 +246,10 @@ def model(self, model):
- on_answer: Called when showing something to the user
- on_thinking: Called when a skill has started working
- on_done: Called when a skill has done its work
- on_context: Called when the current context has changed
Args:
model (object): Object which will receive events
model (object): Object which will receive those events
"""

Expand Down Expand Up @@ -509,4 +510,4 @@ def end_conversation(self, event=None):
if self._on_done:
self._on_done(event.kwargs.get('require_input') if event else False)

self._process_next_intent()
self._process_next_intent()

0 comments on commit a03c327

Please sign in to comment.