Skip to content

Commit

Permalink
Fix invalid dict access syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
istride committed Sep 23, 2024
1 parent d206303 commit c63c215
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rpft/parsers/universal.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ def create_obj(pairs):
obj = benedict()

for kp, v in pairs:
obj[*kp] = v
obj[kp] = v

return obj

Expand Down

0 comments on commit c63c215

Please sign in to comment.