diff --git a/monkey/infection_monkey/config.py b/monkey/infection_monkey/config.py index 0612bf01e..5c5b5a392 100644 --- a/monkey/infection_monkey/config.py +++ b/monkey/infection_monkey/config.py @@ -27,8 +27,6 @@ class Configuration(object): if self._depth_from_commandline and key == "depth": continue if hasattr(self, key): - if type(value) == list: - value = list(filter(None, value)) setattr(self, key, value) else: unknown_items.append(key)