Skip to content

Commit

Permalink
fix handling empty containers in yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
gboehl committed Feb 29, 2024
1 parent 1dd0845 commit c8771cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion econpizza/parser/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def _eval_strs(vdict, context={}):
"""

if vdict is None:
return None
return None, context
else:
vdict = vdict.copy()
context = context.copy()
Expand Down

0 comments on commit c8771cf

Please sign in to comment.