mirror of
https://github.com/Kozea/Radicale.git
synced 2025-08-01 18:18:31 +00:00
Don't explicitely inherit from object
This commit is contained in:
parent
ca056dea9f
commit
20ff5444fb
1 changed files with 1 additions and 1 deletions
|
@ -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."""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue