Get the class of the Python module. Returns: Type[Plugin]: The class.
(self)
| 188 | |
| 189 | @cached_property |
| 190 | def python_class(self) -> Type["Plugin"]: |
| 191 | """ |
| 192 | Get the class of the Python module. |
| 193 | |
| 194 | Returns: |
| 195 | Type[Plugin]: The class. |
| 196 | """ |
| 197 | return import_string(self.python_complete_path) |
| 198 | |
| 199 | @property |
| 200 | def configs(self) -> PythonConfigQuerySet: |
no outgoing calls
no test coverage detected