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