Skip to content

Commit

Permalink
Automatically fix code style issues
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 26, 2025
1 parent 09617d1 commit def3668
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/nanosaur/simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,12 @@ def simulation_info(params: Params, verbose):
if isaac_sim_list := find_all_isaac_sim():
print(TerminalFormatter.color_text(" Isaac Sim installed:", bold=True))
for version, path in isaac_sim_list.items():
print(f" - Isaac Sim {version}: {path}")
print(f" - Isaac Sim {version}: {path}")
# Check if Gazebo is installed
if is_gazebo_installed():
print(TerminalFormatter.color_text(" Gazebo is installed", bold=True))


def parser_simulation_menu(subparsers: argparse._SubParsersAction, params: Params) -> argparse.ArgumentParser:
# Get the simulation tool from the parameters
simulation_type = params.get('simulation_tool', "NOT SELECTED")
Expand Down

0 comments on commit def3668

Please sign in to comment.