Skip to content

Commit

Permalink
Linting & formatting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
civerachb-cpr committed Sep 3, 2024
1 parent d643e35 commit 56c1b79
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 13 deletions.
25 changes: 14 additions & 11 deletions turtlebot4_gz_bringup/launch/sim.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def generate_launch_description():
pkg_ros_gz_sim = get_package_share_directory(
'ros_gz_sim')

# Set Gazebo resource path
# Set Gazebo resource path
gz_resource_path = SetEnvironmentVariable(
name='GZ_SIM_RESOURCE_PATH',
value=':'.join([
Expand All @@ -71,7 +71,7 @@ def generate_launch_description():

gz_gui_plugin_path = SetEnvironmentVariable(
name='GZ_GUI_PLUGIN_PATH',
value=":".join([
value=':'.join([
os.path.join(pkg_turtlebot4_gz_gui_plugins, 'lib'),
os.path.join(pkg_irobot_create_gz_plugins, 'lib')
])
Expand All @@ -85,15 +85,18 @@ def generate_launch_description():
gazebo = IncludeLaunchDescription(
PythonLaunchDescriptionSource([gz_sim_launch]),
launch_arguments=[
('gz_args', [LaunchConfiguration('world'),
'.sdf',
' -v 4',
' --gui-config ',
PathJoinSubstitution(
[pkg_turtlebot4_gz_bringup,
'gui',
LaunchConfiguration('model'),
'gui.config'])])
('gz_args', [
LaunchConfiguration('world'),
'.sdf',
' -v 4',
' --gui-config ',
PathJoinSubstitution([
pkg_turtlebot4_gz_bringup,
'gui',
LaunchConfiguration('model'),
'gui.config'
])
])
]
)

Expand Down
4 changes: 2 additions & 2 deletions turtlebot4_gz_gui_plugins/Turtlebot4Hmi/Turtlebot4Hmi.hh
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
#define TURTLEBOT4_GZ_GUI_PLUGINS__TURTLEBOT4HMI__TURTLEBOT4HMI_HH_

#include <gz/gui/qt.h>
#include <gz/msgs.hh>

#include <string>

#include <gz/transport/Node.hh>
#include <gz/gui/Plugin.hh>
#include <gz/msgs.hh>
#include <gz/transport/Node.hh>

namespace gz
{
Expand Down

0 comments on commit 56c1b79

Please sign in to comment.