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 65ae093 commit bda5054Copy full SHA for bda5054
shiny/ui/_theme_brand.py
@@ -244,7 +244,8 @@ def from_brand(cls, brand: Brand):
244
def join_str(x: str | None, y: str | None):
245
return "\n".join([z for z in [x, y] if z is not None])
246
247
- defaults = bootstrap.defaults or {}
+ defaults: dict[str, YamlScalarType] = {}
248
+ defaults.update(bootstrap.defaults or {})
249
defaults.update(shiny.defaults or {})
250
251
return cls(
0 commit comments