cannon-and-wall / openenv.py
CystronCode's picture
fix: add openenv stub, fix requirements, remove subfolder
5272d5a
Raw
History Blame Contribute Delete
324 Bytes
# openenv.py — local stub satisfying "from openenv import Environment"
class Environment:
"""Minimal OpenEnv-compatible base class."""
def __init__(self):
self.state = {}
def reset(self, **kwargs):
raise NotImplementedError
def step(self, action: dict):
raise NotImplementedError