(self)
| 340 | |
| 341 | @property |
| 342 | def parent_span(self) -> Optional[SpanProtocol]: |
| 343 | return self._params.get('parent_span', None) |
| 344 | |
| 345 | @parent_span.setter |
| 346 | def parent_span(self, value: SpanProtocol) -> None: |
nothing calls this directly
no test coverage detected