Skip to content

Commit 9e8211c

Browse files
committed
chore(types): Fix return value
1 parent 59b93c9 commit 9e8211c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shiny/ui/_theme_brand.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ def _prepare_color_vars(
333333
) -> tuple[dict[str, str], dict[str, str], list[str]]:
334334
"""Colors: create a dictionary of Sass variables and a list of brand CSS variables"""
335335
if not brand.color:
336-
return {}, []
336+
return {}, {}, []
337337

338338
mapped: dict[str, str] = {}
339339
brand_sass_vars: dict[str, str] = {}

0 commit comments

Comments
 (0)