Skip to content

Commit ed992ec

Browse files
committed
[Doc] Parameter info
1 parent 6c79271 commit ed992ec

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

vmas/simulator/core.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
import torch
1313
from torch import Tensor
14+
1415
from vmas.simulator.dynamics.common import Dynamics
1516
from vmas.simulator.dynamics.holonomic import Holonomic
1617
from vmas.simulator.joints import Joint
@@ -821,7 +822,7 @@ def __init__(
821822
collision_filter: Callable[[Entity], bool] = lambda _: True,
822823
render_action: bool = False,
823824
dynamics: Dynamics = None, # Defaults to holonomic
824-
action_size: int = None,
825+
action_size: int = None, # Defaults to what required by the dynamics
825826
):
826827
super().__init__(
827828
name,

0 commit comments

Comments
 (0)