Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
budzianowski committed Jul 10, 2024
1 parent d346b62 commit 0b94d90
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
*.urdf
# Local files
.env
*.DS_Store
# Python
*.py[oc]
__pycache__/
Expand All @@ -15,7 +16,6 @@ __pycache__/
.pytest_cache/
.ruff_cache/
.dmypy.json

# Databases
*.db

Expand Down
2 changes: 1 addition & 1 deletion sim/deploy/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
import numpy as np
from humanoid.envs import *
from humanoid.utils import task_registry
from isaacgym import gymapi
from isaacgym.torch_utils import *
from policy import SimPolicy
from tqdm import tqdm

from isaacgym import gymapi
from sim.deploy.config import RobotConfig
from sim.env import stompy_mjcf_path
from sim.stompy.joints import StompyFixed
Expand Down
2 changes: 1 addition & 1 deletion sim/humanoid_gym/envs/getup_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
from humanoid.envs import LeggedRobot
from humanoid.envs.base.legged_robot_config import LeggedRobotCfg
from humanoid.utils.terrain import HumanoidTerrain
from isaacgym import gymtorch
from isaacgym.torch_utils import *

from isaacgym import gymtorch
from sim.stompy.joints import Stompy

default_feet_height = 0.0
Expand Down
2 changes: 1 addition & 1 deletion sim/humanoid_gym/envs/legs_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
from humanoid.envs import LeggedRobot
from humanoid.envs.base.legged_robot_config import LeggedRobotCfg
from humanoid.utils.terrain import HumanoidTerrain
from isaacgym import gymtorch
from isaacgym.torch_utils import *

from isaacgym import gymtorch
from sim.stompy.joints import StompyFixed


Expand Down
2 changes: 1 addition & 1 deletion sim/humanoid_gym/envs/stompy_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
from humanoid.envs import LeggedRobot
from humanoid.envs.base.legged_robot_config import LeggedRobotCfg
from humanoid.utils.terrain import HumanoidTerrain
from isaacgym import gymtorch
from isaacgym.torch_utils import *

from isaacgym import gymtorch
from sim.stompy.joints import Stompy


Expand Down

0 comments on commit 0b94d90

Please sign in to comment.