Skip to content

Commit

Permalink
fix incorrect type annotation
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 673810968
Change-Id: I9cc26bed3d35b5a029b32d0c3c906a0f1b97993d
  • Loading branch information
jagapiou authored and copybara-github committed Sep 12, 2024
1 parent 5c92d25 commit edf43ba
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions examples/modular/scenario/supporting_agents.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
import dataclasses
from typing import Any

from examples.modular.utils import supporting_agent_factory_with_overrides as bots_lib
import immutabledict


Expand All @@ -35,7 +34,7 @@ class SupportingAgentConfig:
overrides: Mapping[str, Any] | None = None


SUPPORTING_AGENT_CONFIGS: Mapping[str, bots_lib.SupportingAgentFactory] = (
SUPPORTING_AGENT_CONFIGS: Mapping[str, SupportingAgentConfig] = (
immutabledict.immutabledict(
# keep-sorted start numeric=yes block=yes
labor_collective_action__fixed_rule_boss=SupportingAgentConfig(
Expand Down

0 comments on commit edf43ba

Please sign in to comment.