From e69afadd7e5601665c585c2bf7c671c3e7c90296 Mon Sep 17 00:00:00 2001 From: Abhinav Singh Date: Sat, 22 Oct 2022 08:48:11 +0530 Subject: [PATCH] No abstract until defined --- proxy/http/server/middleware.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/proxy/http/server/middleware.py b/proxy/http/server/middleware.py index 668458ed..ba52947f 100644 --- a/proxy/http/server/middleware.py +++ b/proxy/http/server/middleware.py @@ -8,10 +8,9 @@ :copyright: (c) 2013-present by Abhinav Singh and contributors. :license: BSD, see LICENSE for more details. """ -from abc import ABC -class HttpWebServerBaseMiddleware(ABC): +class HttpWebServerBaseMiddleware: """Web Server Middle-ware for customization during request/response dispatch lifecycle.""" pass