Returns the report class associated with the plugin configuration. Returns: Type[AbstractReport]: The report class.
(cls)
| 1468 | |
| 1469 | @classproperty |
| 1470 | def report_class(cls) -> Type[AbstractReport]: |
| 1471 | """ |
| 1472 | Returns the report class associated with the plugin configuration. |
| 1473 | |
| 1474 | Returns: |
| 1475 | Type[AbstractReport]: The report class. |
| 1476 | """ |
| 1477 | return cls.reports.rel.related_model |
| 1478 | |
| 1479 | @classmethod |
| 1480 | def get_subclasses(cls) -> typing.List["PythonConfig"]: |
nothing calls this directly
no outgoing calls
no test coverage detected