Fix bad-indentation in the nfv code

Unsuppress and fix the following pylint error code:
 W0311 bad-indentation

This change has no runtime effect.

Story: 2004515
Task: 28244
Change-Id: Ic0a43748e2795ae17a94ba283c31abf42bf26b12
Signed-off-by: Al Bailey <Al.Bailey@windriver.com>
This commit is contained in:
Al Bailey 2018-12-03 13:29:37 -06:00
parent b4579b875b
commit d8b1eedb61
4 changed files with 20 additions and 21 deletions

View File

@ -33,7 +33,6 @@ load-plugins=
# W0223 abstract-method
# W0231 super-init-not-called
# W0235 useless-super-delegation
# W0311 bad-indentation
# W0401 wildcard-import
# W0403 relative-import warning
# W0404 reimported
@ -45,7 +44,7 @@ load-plugins=
# W0622 redefined-builtin
# W0703 broad except warning
# W1401 anomalous-backslash-in-string
disable=C, R, W0120, W0125, W0212, W0221, W0223, W0231, W0235, W0311,
disable=C, R, W0120, W0125, W0212, W0221, W0223, W0231, W0235,
W0401, W0403, W0404, W0511, W0603, W0612, W0613, W0621, W0622, W0703, W1401