Get the configurations of the module. Returns: PythonConfigQuerySet: The configurations.
(self)
| 198 | |
| 199 | @property |
| 200 | def configs(self) -> PythonConfigQuerySet: |
| 201 | """ |
| 202 | Get the configurations of the module. |
| 203 | |
| 204 | Returns: |
| 205 | PythonConfigQuerySet: The configurations. |
| 206 | """ |
| 207 | return self.config_class.objects.filter(python_module__pk=self.pk) |
| 208 | |
| 209 | @cached_property |
| 210 | def config_class(self) -> Type["PythonConfig"]: |
nothing calls this directly
no outgoing calls
no test coverage detected