Rename functions in validity to avoid future member name collisions.

This commit is contained in:
Mike Auty
2014-12-30 03:49:31 +00:00
parent 7ca450fd19
commit c1d054df10
12 changed files with 25 additions and 25 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ class ObjectTemplate(interfaces.objects.Template, validity.ValidityRoutines):
def __init__(self, object_class = None, structure_name = None, **kwargs):
interfaces.objects.Template.__init__(self, structure_name = structure_name, **kwargs)
self.class_check(object_class, interfaces.objects.ObjectInterface)
self._class_check(object_class, interfaces.objects.ObjectInterface)
self.object_class = object_class
@classmethod