Refactor the validity function names to make it easier for autocomplete to find.

This commit is contained in:
Mike Auty
2015-12-29 22:24:32 +00:00
parent 595e2faeb4
commit bcbfee9016
14 changed files with 29 additions and 29 deletions
+1 -1
View File
@@ -58,7 +58,7 @@ class ContextModifierInterface(validity.ValidityRoutines, metaclass = ABCMeta):
:param namespace: Specifies the namespace for all configuration options to be specified under
:type namespace: str
"""
self.namespace = self._type_check(namespace, str)
self.namespace = self._check_type(namespace, str)
def config_get(self, context):
return context.config[self.namespace]