Skip to content

Commit

Permalink
Fixes custom component name specification in map encoding component
Browse files Browse the repository at this point in the history
  • Loading branch information
aleph-ra committed Sep 5, 2024
1 parent 88f703c commit 05252bc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion agents/agents/components/map_encoding.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ def __init__(
db_client: DBClient,
trigger: Union[Topic, list[Topic], float] = 10.0,
callback_group=None,
component_name="map_encoder_component",
**kwargs,
):
self.config: MapConfig = config
Expand All @@ -84,7 +85,7 @@ def __init__(
config,
trigger,
callback_group,
self.config.map_name,
component_name,
**kwargs,
)

Expand Down

0 comments on commit 05252bc

Please sign in to comment.