Skip to content

Commit

Permalink
- changed imports
Browse files Browse the repository at this point in the history
  • Loading branch information
RaikoPipe committed Oct 31, 2022
1 parent 52cc1f1 commit c4868b2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion stable_baselines3/common/atari_wrappers.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
except ImportError:
cv2 = None

from stable_baselines3.common.type_aliases import gymnasium as gym26ResetReturn, Gym26StepReturn
from stable_baselines3.common.type_aliases import Gym26ResetReturn, Gym26StepReturn


class NoopResetEnv(gym.Wrapper):
Expand Down
2 changes: 1 addition & 1 deletion stable_baselines3/common/envs/bit_flipping_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from gymnasium import Env, spaces
from gym.envs.registration import EnvSpec

from stable_baselines3.common.type_aliases import gymnasium as gym26StepReturn
from stable_baselines3.common.type_aliases import Gym26StepReturn


class BitFlippingEnv(Env):
Expand Down
2 changes: 1 addition & 1 deletion stable_baselines3/common/envs/identity_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from gymnasium import Env, Space
from gym.spaces import Box, Discrete, MultiBinary, MultiDiscrete

from stable_baselines3.common.type_aliases import gymnasium as gym26ResetReturn, Gym26StepReturn
from stable_baselines3.common.type_aliases import Gym26ResetReturn, Gym26StepReturn


class IdentityEnv(Env):
Expand Down
2 changes: 1 addition & 1 deletion stable_baselines3/common/envs/multi_input_envs.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import gymnasium as gym
import numpy as np

from stable_baselines3.common.type_aliases import gymnasium as gym26StepReturn
from stable_baselines3.common.type_aliases import Gym26StepReturn


class SimpleMultiObsEnv(gym.Env):
Expand Down
2 changes: 1 addition & 1 deletion stable_baselines3/common/monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import numpy as np
import pandas

from stable_baselines3.common.type_aliases import gymnasium as gym26ResetReturn, Gym26StepReturn
from stable_baselines3.common.type_aliases import Gym26ResetReturn, Gym26StepReturn


class Monitor(gym.Wrapper):
Expand Down

0 comments on commit c4868b2

Please sign in to comment.