diff options
author | Kenny Woodson <kwoodson@redhat.com> | 2017-03-29 11:51:16 -0400 |
---|---|---|
committer | Kenny Woodson <kwoodson@redhat.com> | 2017-03-29 11:51:16 -0400 |
commit | 44b5ab73728d569b9d77f5cc179a5b36f9d2485f (patch) | |
tree | fa87d2dcedc733e2fa271521d8c3f6f3ef75f31c /roles | |
parent | a8e180943aa3bd1692507f5ecd4126b7993202c6 (diff) | |
download | openshift-44b5ab73728d569b9d77f5cc179a5b36f9d2485f.tar.gz openshift-44b5ab73728d569b9d77f5cc179a5b36f9d2485f.tar.bz2 openshift-44b5ab73728d569b9d77f5cc179a5b36f9d2485f.tar.xz openshift-44b5ab73728d569b9d77f5cc179a5b36f9d2485f.zip |
Fixed spacing.
Diffstat (limited to 'roles')
-rw-r--r-- | roles/lib_openshift/library/oc_clusterrole.py | 6 | ||||
-rw-r--r-- | roles/lib_openshift/src/lib/rule.py | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/roles/lib_openshift/library/oc_clusterrole.py b/roles/lib_openshift/library/oc_clusterrole.py index 8bd8a2ccd..3f5d2a884 100644 --- a/roles/lib_openshift/library/oc_clusterrole.py +++ b/roles/lib_openshift/library/oc_clusterrole.py @@ -1473,9 +1473,9 @@ class Rule(object): def __eq__(self, other): '''return whether rules are equal''' return (self.attribute_restrictions == other.attribute_restrictions and - self.api_groups == other.api_groups and - self.resources == other.resources and - self.verbs == other.verbs) + self.api_groups == other.api_groups and + self.resources == other.resources and + self.verbs == other.verbs) @staticmethod diff --git a/roles/lib_openshift/src/lib/rule.py b/roles/lib_openshift/src/lib/rule.py index d1e900427..4590dcf90 100644 --- a/roles/lib_openshift/src/lib/rule.py +++ b/roles/lib_openshift/src/lib/rule.py @@ -125,9 +125,9 @@ class Rule(object): def __eq__(self, other): '''return whether rules are equal''' return (self.attribute_restrictions == other.attribute_restrictions and - self.api_groups == other.api_groups and - self.resources == other.resources and - self.verbs == other.verbs) + self.api_groups == other.api_groups and + self.resources == other.resources and + self.verbs == other.verbs) @staticmethod |