Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mgonzs13 committed Apr 7, 2024
1 parent d6a8b45 commit 8bcc1f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yasmin/yasmin/state.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def __call__(self, blackboard: Blackboard = None) -> str:

if outcome not in self._outcomes:
raise Exception(
f"Outcome {outcome} does not belong to the outcomes of the state {self}. The possible outcomes are: {self._outcomes}")
f"Outcome '{outcome}' does not belong to the outcomes of the state '{self}'. The possible outcomes are: {self._outcomes}")

return outcome

Expand Down

0 comments on commit 8bcc1f1

Please sign in to comment.