Skip to content

Commit

Permalink
another pytype fix
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 681169287
Change-Id: I4ab8169228d9aab95e07d9c1f0a0c85bbec1fed8
  • Loading branch information
jzleibo authored and copybara-github committed Oct 1, 2024
1 parent d726a0f commit e42ba3b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion examples/modular/launch_concordia_challenge_evaluation.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,9 @@ def _evaluate_all_repetitions_on_one_scenario(
)
)
if exceptions_per_repetition:
raise ExceptionGroup('Raised errors', exceptions_per_repetition.values())
raise ExceptionGroup(
'Raised errors', list(exceptions_per_repetition.values())
)

for repetition_idx, outcome in outputs_per_repetition.items():
if scenario_config.focal_is_resident:
Expand Down

0 comments on commit e42ba3b

Please sign in to comment.