diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-01-26 14:29:01 +0100 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-01-26 18:14:28 +0100 |
commit | c6092cb676363d89f366dc9a416ba6c53eeea33f (patch) | |
tree | a850e02e9aebb2e05203437685a04312226f3f45 /functest/utils/config.py | |
parent | 4862f742a08658459afee5e272122af5f2cdc9de (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.py | 1 |
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) |