diff options
author | Kenny Woodson <kwoodson@redhat.com> | 2017-01-13 14:29:48 -0500 |
---|---|---|
committer | Kenny Woodson <kwoodson@redhat.com> | 2017-01-17 10:47:16 -0500 |
commit | ea33e223e34bb2b8efae6b165f3ac9729357cb46 (patch) | |
tree | 73c704561e5896835b1fcfbf281a7c700bfa4ee3 /roles/lib_utils/library | |
parent | 07331b47724dbb7cd6952c1a2af54275ace7726e (diff) | |
download | openshift-ea33e223e34bb2b8efae6b165f3ac9729357cb46.tar.gz openshift-ea33e223e34bb2b8efae6b165f3ac9729357cb46.tar.bz2 openshift-ea33e223e34bb2b8efae6b165f3ac9729357cb46.tar.xz openshift-ea33e223e34bb2b8efae6b165f3ac9729357cb46.zip |
Adding oc_edit module to lib_openshift.
Diffstat (limited to 'roles/lib_utils/library')
-rw-r--r-- | roles/lib_utils/library/yedit.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/roles/lib_utils/library/yedit.py b/roles/lib_utils/library/yedit.py index 90c7fd4d7..d882c983e 100644 --- a/roles/lib_utils/library/yedit.py +++ b/roles/lib_utils/library/yedit.py @@ -162,12 +162,15 @@ EXAMPLES = ''' # b: # c: d ''' +# noqa: E301,E302 + class YeditException(Exception): ''' Exception class for Yedit ''' pass +# pylint: disable=too-many-public-methods class Yedit(object): ''' Class to modify yaml files ''' re_valid_key = r"(((\[-?\d+\])|([0-9a-zA-Z%s/_-]+)).?)+$" @@ -724,6 +727,7 @@ class Yedit(object): return {'failed': True, 'msg': 'Unkown state passed'} + # pylint: disable=too-many-branches def main(): ''' ansible oc module for secrets ''' |