Skip to content

Commit

Permalink
Fix minor pytype bug
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 700133692
Change-Id: Icd6e7b41f35bea39fe07173aef19676e3efa86a2
  • Loading branch information
jzleibo authored and copybara-github committed Nov 26, 2024
1 parent 7cbf802 commit a2d48fc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/modular/launch_concordia_challenge_evaluation.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
"""

import argparse
from collections.abc import Sequence
import datetime
import functools
import importlib
Expand Down Expand Up @@ -230,7 +231,7 @@ def _evaluate_one_repetition(
def _evaluate_all_repetitions_on_one_scenario(
scenario_name: str,
scenario_config: scenarios_lib.ScenarioConfig,
) -> logging_lib.ScenarioResult:
) -> Sequence[logging_lib.ScenarioResult]:
"""Evaluates the agent on one scenario, averaging over repetitions.
Args:
Expand Down

0 comments on commit a2d48fc

Please sign in to comment.