Returns the parameters associated with the plugin's configuration. Returns: ParameterQuerySet: The queryset of parameters.
(self)
| 1458 | |
| 1459 | @property |
| 1460 | def parameters(self) -> ParameterQuerySet: |
| 1461 | """ |
| 1462 | Returns the parameters associated with the plugin's configuration. |
| 1463 | |
| 1464 | Returns: |
| 1465 | ParameterQuerySet: The queryset of parameters. |
| 1466 | """ |
| 1467 | return Parameter.objects.filter(python_module=self.python_module) |
| 1468 | |
| 1469 | @classproperty |
| 1470 | def report_class(cls) -> Type[AbstractReport]: |
nothing calls this directly
no outgoing calls
no test coverage detected