diff --git a/spiderweb/middleware/base.py b/spiderweb/middleware/base.py index 4c1dabf..82db29e 100644 --- a/spiderweb/middleware/base.py +++ b/spiderweb/middleware/base.py @@ -30,7 +30,7 @@ class SpiderwebMiddleware: # If there are any startup checks that need to be run, they should be added # to this list. These checks should be classes that inherit from # spiderweb.server_checks.ServerCheck. - self.checks: list[ServerCheck] = [] + self.checks: list[ServerCheck] def process_request(self, request: Request) -> HttpResponse | None: # This method is called before the request is passed to the view. You can safely