aboutsummaryrefslogtreecommitdiffstats
path: root/functest/api/server.py
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2018-03-11 19:16:09 +0100
committerCédric Ollivier <cedric.ollivier@orange.com>2018-03-11 20:06:54 +0100
commiteb973db776e77781c875d2640c4d59f878ba27c0 (patch)
treece1f9247c82a4ffce9c717cda35bed67c5d0c9de /functest/api/server.py
parenta1a2fa10cd8cffbe7dc4cffec3446aafe73d87ba (diff)
Fix many pylint warnings
Only pylint warnings in vnf modules has to be fixed now. Change-Id: Ie71230072a51bb72ec0b1d4fef2652494d29948e Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'functest/api/server.py')
-rw-r--r--functest/api/server.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/functest/api/server.py b/functest/api/server.py
index 3200c1a2f..2a6b228ff 100644
--- a/functest/api/server.py
+++ b/functest/api/server.py
@@ -89,7 +89,7 @@ def init_db():
except TypeError:
pass
return False
- # pylint: disable=bad-builtin
+ # pylint: disable=bad-option-value,bad-builtin,
subclses = filter(func, inspect.getmembers(models, inspect.isclass))
LOGGER.debug('Import models: %s', [subcls[1] for subcls in subclses])
BASE.metadata.create_all(bind=ENGINE)