Get the configuration class of the module. Returns: Type[PythonConfig]: The configuration class.
(self)
| 208 | |
| 209 | @cached_property |
| 210 | def config_class(self) -> Type["PythonConfig"]: |
| 211 | """ |
| 212 | Get the configuration class of the module. |
| 213 | |
| 214 | Returns: |
| 215 | Type[PythonConfig]: The configuration class. |
| 216 | """ |
| 217 | return self.python_class.config_model |
| 218 | |
| 219 | @property |
| 220 | def queue(self) -> str: |
nothing calls this directly
no outgoing calls
no test coverage detected