From 049af0b068ec924214c2b6d49a3e1c71eab0e477 Mon Sep 17 00:00:00 2001 From: Viraj Kanwade Date: Sat, 16 Mar 2024 10:47:48 -0700 Subject: [PATCH] fix: remove unused fastapi WSGIMiddleware import to remove pytest warning --- appmap/fastapi.py | 1 - 1 file changed, 1 deletion(-) diff --git a/appmap/fastapi.py b/appmap/fastapi.py index 949c7a72..170ae331 100644 --- a/appmap/fastapi.py +++ b/appmap/fastapi.py @@ -59,7 +59,6 @@ def __init__(self, app, remote_enabled=None): def init_app(self): # pylint: disable=import-outside-toplevel - from fastapi.middleware.wsgi import WSGIMiddleware from starlette.routing import Mount, Router # pylint: enable=import-outside-toplevel