Skip to content

Commit

Permalink
undo
Browse files Browse the repository at this point in the history
  • Loading branch information
Kallinteris-Andreas committed Oct 17, 2024
1 parent 1948c6b commit 5fba608
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gymnasium/envs/box2d/lunar_lander.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ def reset(
# Create Lander body
initial_y = VIEWPORT_H / SCALE
initial_x = VIEWPORT_W / SCALE / 2
self.lander = self.world.CreateDynamicBody(
self.lander: Box2D.b2Body = self.world.CreateDynamicBody(
position=(initial_x, initial_y),
angle=0.0,
fixtures=fixtureDef(
Expand Down

0 comments on commit 5fba608

Please sign in to comment.