(self, is_tracing: bool)
| 346 | self._waiting_for_object[guid] = callback |
| 347 | |
| 348 | def set_is_tracing(self, is_tracing: bool) -> None: |
| 349 | if is_tracing: |
| 350 | self._tracing_count += 1 |
| 351 | else: |
| 352 | self._tracing_count -= 1 |
| 353 | |
| 354 | def _send_message_to_server( |
| 355 | self, object: ChannelOwner, method: str, params: Dict, no_reply: bool = False |
no outgoing calls
no test coverage detected