From 3d1a7b631f81784456bf534bb383873799d534d4 Mon Sep 17 00:00:00 2001 From: Chiara Rasi Date: Thu, 21 Nov 2024 14:01:00 +0100 Subject: [PATCH] Remove comment --- preClinVar/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/preClinVar/main.py b/preClinVar/main.py index 89f209d..beb0e88 100644 --- a/preClinVar/main.py +++ b/preClinVar/main.py @@ -25,7 +25,7 @@ async def lifespan(app_: FastAPI): "{levelprefix} {asctime} : {message}", style="{", use_colors=True ) LOG.handlers[0].setFormatter(console_formatter) - yield # This is crucial for the lifespan context manager + yield app = FastAPI(lifespan=lifespan)