(
self, name: str, location: TracingGroupLocation = None
)
| 156 | self._connection.set_is_tracing(False) |
| 157 | |
| 158 | async def group( |
| 159 | self, name: str, location: TracingGroupLocation = None |
| 160 | ) -> DisposableStub: |
| 161 | await self._channel.send("tracingGroup", None, locals_to_params(locals())) |
| 162 | return DisposableStub(lambda: self.group_end(), self) |
| 163 | |
| 164 | async def group_end(self) -> None: |
| 165 | await self._channel.send( |