From 20ff5444fba39e61f08bd5d34967d876dc70ef41 Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Thu, 12 May 2016 18:57:59 +0200 Subject: [PATCH] Don't explicitely inherit from object --- radicale/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicale/__init__.py b/radicale/__init__.py index eab85a8..6aecd9c 100644 --- a/radicale/__init__.py +++ b/radicale/__init__.py @@ -50,7 +50,7 @@ NOT_ALLOWED = (client.FORBIDDEN, {}, None) WELL_KNOWN_RE = re.compile(r"/\.well-known/(carddav|caldav)/?$") -class HTTPServer(wsgiref.simple_server.WSGIServer, object): +class HTTPServer(wsgiref.simple_server.WSGIServer): """HTTP server.""" def __init__(self, address, handler, bind_and_activate=True): """Create server."""