From 2e780bd8606f814cbe67632daa4efb088e04ef89 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Thu, 4 Feb 2021 13:11:36 -0300 Subject: [PATCH] Fixed flake8 errors. --- tests/.config/kiplot/plugins/fil_test.py | 5 +++-- tests/.config/kiplot/plugins/out_test.py | 1 - 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/.config/kiplot/plugins/fil_test.py b/tests/.config/kiplot/plugins/fil_test.py index bba685c6..6095d785 100644 --- a/tests/.config/kiplot/plugins/fil_test.py +++ b/tests/.config/kiplot/plugins/fil_test.py @@ -9,8 +9,9 @@ with document: """ Documentation """ bvar = True """ Other doc """ -assert _help_avar == '[number=1] Documentation', _help_avar -assert _help_bvar == '[boolean=true] Other doc', _help_bvar +assert _help_avar == '[number=1] Documentation', _help_avar # noqa: F821 +assert _help_bvar == '[boolean=true] Other doc', _help_bvar # noqa: F821 + @filter_class def pp(): diff --git a/tests/.config/kiplot/plugins/out_test.py b/tests/.config/kiplot/plugins/out_test.py index e7548dec..5d4ff160 100644 --- a/tests/.config/kiplot/plugins/out_test.py +++ b/tests/.config/kiplot/plugins/out_test.py @@ -33,4 +33,3 @@ class Test(BaseOutput): # noqa: F821 def get_dependencies(self): return ['dummy'] -