Returns the name of the plugin. Returns: str: The plugin name.
(cls)
| 1579 | |
| 1580 | @classproperty |
| 1581 | def plugin_name(cls) -> str: |
| 1582 | """ |
| 1583 | Returns the name of the plugin. |
| 1584 | |
| 1585 | Returns: |
| 1586 | str: The plugin name. |
| 1587 | """ |
| 1588 | return cls.__name__.split("Config")[0] |
| 1589 | |
| 1590 | @classmethod |
| 1591 | def signature_pipeline_running(cls, job) -> Signature: |
nothing calls this directly
no outgoing calls
no test coverage detected