mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2025-07-31 22:04:31 +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
23 lines
535 B
Python
23 lines
535 B
Python
from gym.spaces.box import Box
|
|
from gym.spaces.dict import Dict
|
|
from gym.spaces.discrete import Discrete
|
|
from gym.spaces.multi_binary import MultiBinary
|
|
from gym.spaces.multi_discrete import MultiDiscrete
|
|
from gym.spaces.space import Space
|
|
from gym.spaces.tuple import Tuple
|
|
from gym.spaces.utils import flatdim, flatten, flatten_space, unflatten
|
|
|
|
__all__ = [
|
|
"Space",
|
|
"Box",
|
|
"Discrete",
|
|
"MultiDiscrete",
|
|
"MultiBinary",
|
|
"Tuple",
|
|
"Dict",
|
|
"flatdim",
|
|
"flatten_space",
|
|
"flatten",
|
|
"unflatten",
|
|
]
|