Skip to content

Commit

Permalink
Consider the option policy product to remain None
Browse files Browse the repository at this point in the history
  • Loading branch information
teacup-on-rockingchair committed Oct 3, 2024
1 parent 220b799 commit ab875b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ssg/controls.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ def load(self):
yaml_product = yaml_contents.get("product", None)
if type(yaml_product) is list:
self.product = yaml_product
else:
elif yaml_product is not None:
self.product = [yaml_product]

default_level_dict = {"id": "default"}
Expand Down

0 comments on commit ab875b0

Please sign in to comment.