MCPcopy Create free account
hub / github.com/intelowlproject/IntelOwl / configs

Method configs

api_app/models.py:200–207  ·  view source on GitHub ↗

Get the configurations of the module. Returns: PythonConfigQuerySet: The configurations.

(self)

Source from the content-addressed store, hash-verified

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"]:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected