diff options
author | Rodolfo Carvalho <rhcarvalho@gmail.com> | 2017-05-09 10:49:55 +0200 |
---|---|---|
committer | Rodolfo Carvalho <rhcarvalho@gmail.com> | 2017-05-09 10:49:55 +0200 |
commit | a0539d0c459b5d5733a64f00d3f1d596ae5e9c1c (patch) | |
tree | 7b5374bfa9942b34fefdf49ddd173104069bed4c /roles/openshift_health_checker | |
parent | 53cdc13944d1e4b60f3db328097a4eb929d01092 (diff) | |
download | openshift-a0539d0c459b5d5733a64f00d3f1d596ae5e9c1c.tar.gz openshift-a0539d0c459b5d5733a64f00d3f1d596ae5e9c1c.tar.bz2 openshift-a0539d0c459b5d5733a64f00d3f1d596ae5e9c1c.tar.xz openshift-a0539d0c459b5d5733a64f00d3f1d596ae5e9c1c.zip |
Remove vim configuration from Python files
In a project where contributors are free to use whatever editor they
want and we have linting tools that verify the proper formatting of
Python files, it should not be required to have a vim-specific line in
Python files.
Diffstat (limited to 'roles/openshift_health_checker')
3 files changed, 0 insertions, 3 deletions
diff --git a/roles/openshift_health_checker/callback_plugins/zz_failure_summary.py b/roles/openshift_health_checker/callback_plugins/zz_failure_summary.py index 208e81048..7bce7f107 100644 --- a/roles/openshift_health_checker/callback_plugins/zz_failure_summary.py +++ b/roles/openshift_health_checker/callback_plugins/zz_failure_summary.py @@ -1,4 +1,3 @@ -# vim: expandtab:tabstop=4:shiftwidth=4 ''' Ansible callback plugin. ''' diff --git a/roles/openshift_health_checker/library/aos_version.py b/roles/openshift_health_checker/library/aos_version.py index a46589443..4460ec324 100755 --- a/roles/openshift_health_checker/library/aos_version.py +++ b/roles/openshift_health_checker/library/aos_version.py @@ -1,5 +1,4 @@ #!/usr/bin/python -# vim: expandtab:tabstop=4:shiftwidth=4 ''' Ansible module for yum-based systems determining if multiple releases of an OpenShift package are available, and if the release requested diff --git a/roles/openshift_health_checker/library/check_yum_update.py b/roles/openshift_health_checker/library/check_yum_update.py index 630ebc848..433795b67 100755 --- a/roles/openshift_health_checker/library/check_yum_update.py +++ b/roles/openshift_health_checker/library/check_yum_update.py @@ -1,5 +1,4 @@ #!/usr/bin/python -# vim: expandtab:tabstop=4:shiftwidth=4 ''' Ansible module to test whether a yum update or install will succeed, without actually performing it or running yum. |