diff --git a/agent/definitions.py b/agent/definitions.py index 49046af3..3934a6fb 100644 --- a/agent/definitions.py +++ b/agent/definitions.py @@ -30,10 +30,12 @@ class Exploit(abc.ABC): @abc.abstractmethod def accept(self, target: Target) -> bool: """Rule: heuristically detect if a specific target is valid. + Args: target: Target to verify + Returns: - True if the target is valid; false otherwise. + True if the target is valid; otherwise False. """ pass