Fixing tox flake8 errors in configutilities component

Listed below are the errors which were fixed as well as the actions
    taken to fix them:

    " E124 closing bracket does not match visual indentation":
      --> fix from '     "FM_SERVICE_TYPE": "faultmanagement",
                    })'
              to   '     "FM_SERVICE_TYPE": "faultmanagement",
                          })'

Story: 2003360
Task: 24857
Change-Id: I4d9081a0a9f96aabf50dc792480ea46c11f10d3c
Signed-off-by: SidneyAn <ran1.an@intel.com>
This commit is contained in:
SidneyAn 2018-08-27 10:41:25 +08:00
parent 2749d9a693
commit c937847c56
2 changed files with 1 additions and 4 deletions

View File

@ -45,7 +45,7 @@ EXPECTED_SERVICE_NAME_AND_TYPE = (
"GNOCCHI_SERVICE_TYPE": "metric",
"FM_SERVICE_NAME": "fm",
"FM_SERVICE_TYPE": "faultmanagement",
})
})
def is_valid_vlan(vlan):

View File

@ -17,6 +17,3 @@ install_command = pip install --no-cache-dir {opts} {packages}
basepython = python2.7
deps = flake8
commands = flake8 {posargs}
[flake8]
ignore = W503