Skip to content
This repository was archived by the owner on Oct 23, 2023. It is now read-only.

Commit c02a22d

Browse files
committed
Fixed bug in communication tasks
1 parent 7494fd0 commit c02a22d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: python/solution.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def evaluate(
129129
pipes_sol_2_m_names.append("pipe_sol%d_2_m" % p)
130130

131131
executions = []
132-
for p, p_in, p_out, p_in_name, p_out_name in enumerate(
132+
for p, (p_in, p_out, p_in_name, p_out_name) in enumerate(
133133
zip(pipes_m_2_sol, pipes_sol_2_m, pipes_m_2_sol_names,
134134
pipes_sol_2_m_names)):
135135
exec = self.solution.execute(

0 commit comments

Comments
 (0)