(self, msg: AddTool)
| 78 | """ |
| 79 | |
| 80 | def add(self, msg: AddTool) -> str: |
| 81 | self.secret += msg.number |
| 82 | return f""" |
| 83 | Added {msg.number} to stored number => {self.secret}. |
| 84 | Ask the user what they want to do. |
| 85 | """ |
| 86 | |
| 87 | def show(self, msg: ShowTool) -> str: |
| 88 | return f"Tell the user that the SECRET NUMBER is {self.secret}" |
no outgoing calls