Skip to content

Commit

Permalink
Updated relative imports to absolute imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jonashen committed May 29, 2018
1 parent b65bf16 commit 6f4aa10
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rllab/envs/mujoco/point_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import glfw
import numpy as np

from .mujoco_env import MujocoEnv
from rllab.envs.mujoco.mujoco_env import MujocoEnv
from rllab.envs.base import Step
from rllab.core.serializable import Serializable
from rllab.misc.overrides import overrides
Expand Down
2 changes: 1 addition & 1 deletion rllab/envs/mujoco/simple_humanoid_env.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from rllab.envs.base import Step
from .mujoco_env import MujocoEnv
from rllab.envs.mujoco.mujoco_env import MujocoEnv
import numpy as np
from rllab.core.serializable import Serializable
from rllab.misc.overrides import overrides
Expand Down
2 changes: 1 addition & 1 deletion rllab/envs/mujoco/swimmer_env.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from rllab.envs.base import Step
from rllab.misc.overrides import overrides
from .mujoco_env import MujocoEnv
from rllab.envs.mujoco.mujoco_env import MujocoEnv
import numpy as np
from rllab.core.serializable import Serializable
from rllab.misc import logger
Expand Down

0 comments on commit 6f4aa10

Please sign in to comment.