From bfeff28d57bf4a951216f1c6e6d4adf4c834e041 Mon Sep 17 00:00:00 2001 From: Rath Pascal Date: Fri, 6 Dec 2024 17:19:14 +0100 Subject: [PATCH] lint fix --- filter_plugins/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 = []