From 99311c3de2326f5c004cb7b652eb4ccd4c54e997 Mon Sep 17 00:00:00 2001 From: Thibault Derousseaux Date: Fri, 6 Dec 2024 15:28:10 +0100 Subject: [PATCH] fixup! Update to Atoti Python API 0.9.2 --- app/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/__main__.py b/app/__main__.py index 853d8f8..be3dfc5 100644 --- a/app/__main__.py +++ b/app/__main__.py @@ -7,7 +7,7 @@ async def main() -> None: async with start_app(config=Config()) as session: port = urlparse(session.url).port or 80 - print(f"Session listening on port {port}") + print(f"Session listening on port {port}") # noqa: T201 await asyncio.to_thread(session.wait)