-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Delayed App Config #1876
Delayed App Config #1876
Conversation
._read_only attribute is now a dict of name -> msgs Overrides .update() method to use __setitem__ implementation Includes updates to unit tests
@alexcjohnson Thoughts on this? The two percy render tests that failed appear to be issues over the change in month/year (e.g expected December 2021, got January 2022) |
@alexcjohnson Does this look good to approve + merge? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great, thanks very much @jborman-exos! 💃
This set of changes seems to cause an incompatibility with |
Adds the ability to set/update
Dash.config
attributes via**kwargs
passed toDash.init_app()
.Contributor Checklist
Dash.__init__()
andDash.init_app()
Alternative Multi-Page App Example
The delayed app config allows app routes to be decoupled from
Dash.__init__()
whenserver=False