Skip to content

Commit e452045

Browse files
committed
Fix components build in case older html was built without the new props.
1 parent 23a824f commit e452045

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

dash/dash.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,8 @@
125125
html.Div(id=_ID_DUMMY, disable_n_clicks=True),
126126
]
127127
)
128-
except AttributeError:
128+
# pylint: disable=bare-except
129+
except: # noqa: E722
129130
page_container = None
130131

131132

0 commit comments

Comments
 (0)