Fixed flake8 errors.

This commit is contained in:
Salvador E. Tropea 2021-02-04 13:11:36 -03:00
parent 9f2344ed4a
commit 2e780bd860
2 changed files with 3 additions and 3 deletions

View File

@ -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():

View File

@ -33,4 +33,3 @@ class Test(BaseOutput): # noqa: F821
def get_dependencies(self):
return ['dummy']