Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-batur committed Dec 10, 2024
1 parent 6325b43 commit 4a7cba8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/ast/decoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -622,10 +622,10 @@ def decode_expr(self, expr: proto.Expr) -> Any:
statement_params = {}
statement_params_list = d.get("statementParams", [])
if len(statement_params_list) > 0:
statement_params_list_map = statement_params_list[0]
statement_params[
statement_params_list_map["1"]
] = statement_params_list_map["2"]
for statement_params_list_map in statement_params_list:
statement_params[
statement_params_list_map["1"]
] = statement_params_list_map["2"]
log_on_exception = d.get("logOnException", False)
block = d.get("block", False)
case_sensitive = d.get("caseSensitive", False)
Expand Down

0 comments on commit 4a7cba8

Please sign in to comment.