qgallouedec / panda-gym

Set of robotic environments based on PyBullet physics engine and gymnasium.
MIT License
492 stars 106 forks source link

Allow the env to be closed many times #68

Closed qgallouedec closed 1 year ago

qgallouedec commented 1 year ago

Before, this would fail, however, it's usual that the user close the environment, and most gym env allow it.

env = gym.make("PandaReach-v3")
env.close()
env.close()

It's now possible.