From 68a3ba2bea76144e4b0a0fad10beb18599eabc1d Mon Sep 17 00:00:00 2001 From: Vosjedev Date: Sun, 26 Oct 2025 10:15:36 +0100 Subject: __init__.py: remove unused import, clean up --- src/acit/__init__.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/acit') diff --git a/src/acit/__init__.py b/src/acit/__init__.py index 05dc260..18d9060 100644 --- a/src/acit/__init__.py +++ b/src/acit/__init__.py @@ -1,6 +1,5 @@ import cherrypy -from cherrypy.process import wspbus from .web import Server @@ -12,8 +11,10 @@ def run(): cherrypy.engine ) imap.subscribe() - cherrypy.quickstart(server,"/", - { - }) + cherrypy.quickstart(server) + + +if __name__=="__main__": + run() -- cgit