| from abc import ABC, abstractmethod | |
| class BaseEnv(ABC): | |
| """ | |
| The base abstract class for all envs. | |
| """ | |
| def reset(self): | |
| pass | |
| def reset_rng(self): | |
| pass | |
| def step(self, action): | |
| pass | |
| def get_obs(self): | |
| pass | |
| from abc import ABC, abstractmethod | |
| class BaseEnv(ABC): | |
| """ | |
| The base abstract class for all envs. | |
| """ | |
| def reset(self): | |
| pass | |
| def reset_rng(self): | |
| pass | |
| def step(self, action): | |
| pass | |
| def get_obs(self): | |
| pass | |