ajenti / ajenti

Function/method with an empty body PTC-W0049
Anti-pattern
Major
6 months ago3 years old
__init__ doesn't contain any code
 42        """]
 43
 44class InvalidRouteHandler(BaseHttpHandler):
 45    def __init__(self, context): 46        pass
 47
 48    def handle(self, http_context):
__init__ doesn't contain any code
 13class DeniedRouteHandler(BaseHttpHandler):
 14    """If client authentication is forced, and the client certificate is not valid."""
 15
 16    def __init__(self, context): 17        pass
 18
 19    def handle(self, http_context):
__exit__ doesn't contain any code
280    def __enter__(self):
281        self.check()
282
283    def __exit__(self, exc_type, exc_val, exc_tb):284        pass
signout doesn't contain any code
171    def update_password(self):
172        pass
173
174    def signout(self):175        pass
176
177
update_password doesn't contain any code
168    def check_mail(self, mail):
169        return False
170
171    def update_password(self):172        pass
173
174    def signout(self):