Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AlirezaMorsali committed Oct 18, 2022
1 parent c25fd7c commit 25b343a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions invertedai/api_resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ def location_info(

def initialize(
location: str = "iai:ubc_roundabout",
agent_count: int = 1,
agent_attributes: List[AgentAttributes] = [],
states_history: Optional[List[List[AgentState]]] = [],
agent_count: Optional[int] = None,
agent_attributes: Optional[List[AgentAttributes]] = None,
states_history: Optional[List[List[AgentState]]] = None,
traffic_light_state_history: Optional[TrafficLightStates] = None,
) -> InitializeResponse:
"""
Expand Down

0 comments on commit 25b343a

Please sign in to comment.