Skip to content

Commit

Permalink
Merge pull request #168 from stat-kwon/master
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
stat-kwon authored Jan 14, 2025
2 parents 0efbb57 + a4e2273 commit b555554
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ def change_global_variables(self, expression: str, vars: dict):
global_variables = jinja_variables - exclude_keys

for global_variable_key in global_variables:
if global_variable_key in vars:
if vars and global_variable_key in vars:
global_variable_value = vars[global_variable_key]
gv_type = type(global_variable_value)

Expand Down

0 comments on commit b555554

Please sign in to comment.