aboutsummaryrefslogtreecommitdiffstats
path: root/functest/utils/config.py
diff options
context:
space:
mode:
authorCedric Ollivier <cedric.ollivier@orange.com>2018-01-29 13:46:44 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-01-29 13:46:44 +0000
commit630a31629bffd6d881faf2e3ea3a849b4143c103 (patch)
treed5d64706bc65e407dae002e066b07fb361c0b0c1 /functest/utils/config.py
parent18c016a2eaf65fec880a04bcc354f52e9cdb4417 (diff)
parentc6092cb676363d89f366dc9a416ba6c53eeea33f (diff)
Merge "Fix pylint errors in several utils modules"
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 f4749a75..050f12a9 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)