Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

Commit

Permalink
fix: actually pass the deep copied participant (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
h4ck3rk3y committed Sep 26, 2023
1 parent 8380599 commit 1e1e9ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package_io/input_parser.star
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def parse_input(input_args):
new_participant[sub_attr] = sub_value
for _ in range(0, new_participant["count"]):
participant_copy = deep_copy_participant(new_participant)
participants.append(new_participant)
participants.append(participant_copy)
result["participants"] = participants

total_participant_count = 0
Expand Down

0 comments on commit 1e1e9ce

Please sign in to comment.