test/utils.py must use gym.make now (was fancy_gym.make)

This commit is contained in:
Dominik Moritz Roth 2023-07-23 11:13:15 +02:00
parent 21a9c0f8a3
commit b0f7dc6c7c

View File

@ -2,7 +2,7 @@ from typing import List, Type
import gymnasium as gym
import numpy as np
from fancy_gym import make
from gymnasium import make
def run_env(env_id: str, iterations: int = None, seed: int = 0, wrappers: List[Type[gym.Wrapper]] = [],