Skip to content

Commit

Permalink
fix: list verification
Browse files Browse the repository at this point in the history
  • Loading branch information
magajh committed Nov 8, 2024
1 parent 3940ca5 commit 20edbcc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/scripts/validate_yaml_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@
Optional("PICASSO_THEMES_NAME"): And(
list,
len,
Use(lambda x: all(isinstance(item, str) and item for item in x), error="PICASSO_THEMES_NAME must be a non-empty list of non-empty strings")
lambda x: all(isinstance(item, str) and item for item in x),
error="PICASSO_THEMES_NAME must be a non-empty list of non-empty strings",
),
Optional("PICASSO_THEME_DIRS"): And(
list,
Expand Down

0 comments on commit 20edbcc

Please sign in to comment.