mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2025-08-02 06:16:32 +00:00
* feat: add `isort` to `pre-commit` * ci: skip `__init__.py` file for `isort` * ci: make `isort` mandatory in lint pipeline * docs: add a section on Git hooks * ci: check isort diff * fix: isort from master branch * docs: add pre-commit badge * ci: update black + bandit versions * feat: add PR template * refactor: PR template * ci: remove bandit * docs: add Black badge * ci: try to remove all `|| true` statements * ci: remove lint_python job - Remove `lint_python` CI job - Move `pyupgrade` job to `pre-commit` workflow * fix: avoid messing with typing * docs: add a note on running `pre-cpmmit` manually * ci: apply `pre-commit` to the whole codebase
6 lines
324 B
Python
6 lines
324 B
Python
from gym.envs.classic_control.acrobot import AcrobotEnv
|
|
from gym.envs.classic_control.cartpole import CartPoleEnv
|
|
from gym.envs.classic_control.continuous_mountain_car import Continuous_MountainCarEnv
|
|
from gym.envs.classic_control.mountain_car import MountainCarEnv
|
|
from gym.envs.classic_control.pendulum import PendulumEnv
|