From 3c194e1eb8dcc9e2fae1bab7fa9307b888072b53 Mon Sep 17 00:00:00 2001 From: Daniel Goldberg Date: Tue, 5 Nov 2019 21:21:44 +0200 Subject: [PATCH] Add TODO doc --- monkey/infection_monkey/network/fingerprinters_collector.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/monkey/infection_monkey/network/fingerprinters_collector.py b/monkey/infection_monkey/network/fingerprinters_collector.py index 9a6c83082..a823d7bfb 100644 --- a/monkey/infection_monkey/network/fingerprinters_collector.py +++ b/monkey/infection_monkey/network/fingerprinters_collector.py @@ -11,4 +11,7 @@ def get_fingerprint_instances() -> Sequence[HostFinger]: Returns the fingerprint objects according to configuration as a list :return: A list of HostFinger objects. """ + # note this currently assumes we're in the same package as the fingerprinters + # if this changes, this file should be updated + # like when they move into a network plugins folder return get_instances(__package__, __file__, HostFinger)