Farama-Foundation / Gymnasium-Robotics

A collection of robotics simulation environments for reinforcement learning
https://robotics.farama.org/
MIT License
485 stars 79 forks source link

[adroit ]Minor Cleanup: assignment of `goal_achieved` #205

Closed Kallinteris-Andreas closed 6 months ago

Kallinteris-Andreas commented 6 months ago

Description

Replaces True if Statement else False with Statement

note

>>> True if True else False
True
>>> True if False else False
False