Skip to content

Commit

Permalink
fix request variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Taoning Wang committed Oct 19, 2023
1 parent 0ecea6b commit 41b6f47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frads/eplus.py
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ def _request_variable_from_callback(self, func: Callable) -> None:
raise ValueError(f"Invalid number of arguments in {func}.")
key_value_pairs.append(key_value)
for key_value in key_value_pairs:
self.request_variable(key_value[0], key_value[1])
self.request_variable(**key_value)



Expand Down

0 comments on commit 41b6f47

Please sign in to comment.