aboutsummaryrefslogtreecommitdiffstats
path: root/functest/utils/config.py
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2018-01-26 14:29:01 +0100
committerCédric Ollivier <cedric.ollivier@orange.com>2018-01-26 18:14:28 +0100
commitc6092cb676363d89f366dc9a416ba6c53eeea33f (patch)
treea850e02e9aebb2e05203437685a04312226f3f45 /functest/utils/config.py
parent4862f742a08658459afee5e272122af5f2cdc9de (diff)
Fix pylint errors in several utils modules
All utils which are moving to xtesting are now fixed. It remains OpenStack and Functest utils (+ the related unit tests) which doesn't move to the new package. Change-Id: If13c627c8444c62d5c6bf9c8057d6413aa0e56c7 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'functest/utils/config.py')
-rw-r--r--functest/utils/config.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/functest/utils/config.py b/functest/utils/config.py
index f4749a75b..050f12a92 100644
--- a/functest/utils/config.py
+++ b/functest/utils/config.py
@@ -12,6 +12,7 @@ import six
class Config(object):
def __init__(self):
try:
+ # pylint: disable=bad-continuation
with open(pkg_resources.resource_filename(
'functest', 'ci/config_functest.yaml')) as yfile:
self.functest_yaml = yaml.safe_load(yfile)