(self, msg)
| 156 | print("Let's count the messages!") |
| 157 | |
| 158 | def on_message(self, msg): |
| 159 | print(json.dumps(msg, indent=4, sort_keys=True)) |
| 160 | self.message_count += 1 |
| 161 | |
| 162 | def on_close(self): |
| 163 | print("-- Goodbye! --") |
nothing calls this directly
no outgoing calls
no test coverage detected