Check whether `SampledSubgraph` is pinned using reflection.
(self)
| 502 | return self.to("pinned") |
| 503 | |
| 504 | def is_pinned(self) -> bool: |
| 505 | """Check whether `SampledSubgraph` is pinned using reflection.""" |
| 506 | |
| 507 | return is_object_pinned(self) |
| 508 | |
| 509 | |
| 510 | def _csc_format_base_str(csc_format_base: CSCFormatBase) -> str: |
no test coverage detected