From e4520459a1df1584d697b59f4ce343ac6615fb39 Mon Sep 17 00:00:00 2001 From: philippe Date: Wed, 8 Feb 2023 11:40:33 -0500 Subject: [PATCH] Fix components build in case older html was built without the new props. --- dash/dash.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dash/dash.py b/dash/dash.py index b8746d4d05..eecd105111 100644 --- a/dash/dash.py +++ b/dash/dash.py @@ -125,7 +125,8 @@ html.Div(id=_ID_DUMMY, disable_n_clicks=True), ] ) -except AttributeError: +# pylint: disable=bare-except +except: # noqa: E722 page_container = None