summaryrefslogtreecommitdiffstats
path: root/roles/openshift_health_checker/openshift_checks/__init__.py
diff options
context:
space:
mode:
authorSteve Milner <smilner@redhat.com>2017-02-20 14:54:39 -0500
committerSteve Milner <smilner@redhat.com>2017-02-22 11:26:23 -0500
commitde8d10d8a6eb34c4f6821353345c7baadc1f3b60 (patch)
tree34c08a52aa9f45a4fcb404d9ade442334e8e32e0 /roles/openshift_health_checker/openshift_checks/__init__.py
parent02a053bf0f3cdeb76753dfb37bb060eef18452d3 (diff)
downloadopenshift-de8d10d8a6eb34c4f6821353345c7baadc1f3b60.tar.gz
openshift-de8d10d8a6eb34c4f6821353345c7baadc1f3b60.tar.bz2
openshift-de8d10d8a6eb34c4f6821353345c7baadc1f3b60.tar.xz
openshift-de8d10d8a6eb34c4f6821353345c7baadc1f3b60.zip
Renamed NotContainerized to NotContainerizedMixin and dropped no-member
Diffstat (limited to 'roles/openshift_health_checker/openshift_checks/__init__.py')
-rw-r--r--roles/openshift_health_checker/openshift_checks/__init__.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/roles/openshift_health_checker/openshift_checks/__init__.py b/roles/openshift_health_checker/openshift_checks/__init__.py
index c31242624..2c70438c9 100644
--- a/roles/openshift_health_checker/openshift_checks/__init__.py
+++ b/roles/openshift_health_checker/openshift_checks/__init__.py
@@ -50,6 +50,7 @@ class OpenShiftCheck(object):
@classmethod
def subclasses(cls):
"""Returns a generator of subclasses of this class and its subclasses."""
+ # AUDIT: no-member makes sense due to this having a metaclass
for subclass in cls.__subclasses__(): # pylint: disable=no-member
yield subclass
for subclass in subclass.subclasses():