From 182243c198a37153b1592fe7779d9d126b8fc5a0 Mon Sep 17 00:00:00 2001 From: mike <219478+ilude@users.noreply.github.com> Date: Mon, 1 Apr 2024 09:25:43 -0400 Subject: [PATCH] attempt to print error --- app/app.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app/app.py b/app/app.py index 01fb352..e91ef9f 100644 --- a/app/app.py +++ b/app/app.py @@ -115,6 +115,5 @@ async def widget(widget_name): else: from hypercorn.config import Config from hypercorn.asyncio import serve - config = Config() - config.bind = [f"0.0.0.0:{port}"] - asyncio.run(serve(app, config)) + config = Config(bind=f"0.0.0.0:{port}") + print(asyncio.run(serve(app, config)))