diff --git a/filter_plugins/utils.py b/filter_plugins/utils.py index b543584..2d27a99 100644 --- a/filter_plugins/utils.py +++ b/filter_plugins/utils.py @@ -2,7 +2,6 @@ class FilterModule(object): - def filters(self): return { "ensure_list": self.ensure_list, @@ -73,6 +72,7 @@ def join_w_excludes(cls, v: list, excludes: list) -> str: return ' '.join([v for v in cls.ensure_list(v) if v not in cls.ensure_list(excludes)]) + # pylint: disable=R0912,R0915 @classmethod def build_route(cls, fe_cnf: dict, be_cnf: dict, be_name: str) -> list: lines = []