We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd40b56 commit 4e50430Copy full SHA for 4e50430
1 file changed
dash/dash.py
@@ -748,11 +748,13 @@ def _setup_hooks(self):
748
749
def init_app(self, app: Optional[Any] = None, **kwargs) -> None:
750
config = self.config
751
- config.unset_read_only([
752
- "url_base_pathname",
753
- "routes_pathname_prefix",
754
- "requests_pathname_prefix",
755
- ])
+ config.unset_read_only(
+ [
+ "url_base_pathname",
+ "routes_pathname_prefix",
+ "requests_pathname_prefix",
756
+ ]
757
+ )
758
config.update(kwargs)
759
config.set_read_only(
760
[
0 commit comments