def check_lower()

in confidence-shared/shared.py [0:0]


    def check_lower(value):
        if not isinstance(value, str):
            raise TypeError("argument must be str, not {}".format(type(value).__name__))
        return value