From 51054a9aac316a13192ef4d98d5938292fcfa851 Mon Sep 17 00:00:00 2001 From: philippe Date: Tue, 2 Sep 2025 10:04:12 -0400 Subject: [PATCH] Remove print in async get_app --- dash/_get_app.py | 1 - 1 file changed, 1 deletion(-) diff --git a/dash/_get_app.py b/dash/_get_app.py index a088e593ff..77df6d2219 100644 --- a/dash/_get_app.py +++ b/dash/_get_app.py @@ -23,7 +23,6 @@ def with_app_context_async(func): async def wrap(self, *args, **kwargs): app_context.set(self) ctx = copy_context() - print("copied and set") return await ctx.run(func, self, *args, **kwargs) return wrap