Farama-Foundation / gym-examples

Example code for the Gym documentation
70 stars 48 forks source link

Use self.observation_space instead of self._observation_space #5

Closed Markus28 closed 2 years ago

Markus28 commented 2 years ago

We were using self._observation_space, self._reward_range etc instead of self.observation_space, self.reward_range etc. That works, but we are using an implementation detail, which we probably shouldn't.