Skip to content

Commit

Permalink
FIX: return type of AsyncVectorEnv.reset (#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
younik authored Jan 9, 2023
1 parent 5af90e3 commit 18d0455
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gymnasium/vector/async_vector_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def reset_wait(
timeout: Optional[Union[int, float]] = None,
seed: Optional[int] = None,
options: Optional[dict] = None,
) -> Union[ObsType, Tuple[ObsType, List[dict]]]:
) -> Union[ObsType, Tuple[ObsType, dict]]:
"""Waits for the calls triggered by :meth:`reset_async` to finish and returns the results.
Args:
Expand Down

0 comments on commit 18d0455

Please # to comment.