Skip to content

Commit 8758e10

Browse files
author
Andrei Neagu
committed
mypy
1 parent 29dd23f commit 8758e10

File tree

1 file changed

+2
-1
lines changed
  • services/dynamic-scheduler/src/simcore_service_dynamic_scheduler/core

1 file changed

+2
-1
lines changed

services/dynamic-scheduler/src/simcore_service_dynamic_scheduler/core/application.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@
3434
from .settings import ApplicationSettings
3535

3636

37-
async def _lifespan_banner(_: FastAPI) -> AsyncIterator[State]:
37+
async def _lifespan_banner(app: FastAPI) -> AsyncIterator[State]:
38+
_ = app
3839
print(APP_STARTED_BANNER_MSG, flush=True) # noqa: T201
3940
yield {}
4041
print(APP_FINISHED_BANNER_MSG, flush=True) # noqa: T201

0 commit comments

Comments
 (0)