Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
superstes committed Dec 6, 2024
1 parent dd134d9 commit bfeff28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion filter_plugins/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@


class FilterModule(object):

def filters(self):
return {
"ensure_list": self.ensure_list,
Expand Down Expand Up @@ -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 = []
Expand Down

0 comments on commit bfeff28

Please sign in to comment.