Skip to content

Commit

Permalink
Fix components build in case older html was built without the new props.
Browse files Browse the repository at this point in the history
  • Loading branch information
T4rk1n committed Feb 8, 2023
1 parent 23a824f commit e452045
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dash/dash.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down

0 comments on commit e452045

Please sign in to comment.