Skip to content

Commit 97a8f80

Browse files
committed
Fix lint
Signed-off-by: Blake McHale <bmchale@nvidia.com>
1 parent 7f1c64f commit 97a8f80

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

greenwave_monitor/examples/example.launch.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
from ament_index_python.packages import get_package_share_directory
1818
from launch import LaunchDescription
19+
from launch.actions import LogInfo
1920
from launch_ros.actions import Node
2021

2122

@@ -98,5 +99,10 @@ def generate_launch_description():
9899
name='greenwave_monitor',
99100
output='log',
100101
parameters=[config_file]
102+
),
103+
LogInfo(
104+
msg='Follow the instructions to setup r2s_gw in the README.md, then run '
105+
'`ros2 run r2s_gw r2s_gw` in another terminal to see the demo output '
106+
'with the r2s dashboard.'
101107
)
102108
])

greenwave_monitor/include/greenwave_diagnostics.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@
1818
#pragma once
1919

2020
#include <algorithm>
21-
#include <cstring>
22-
#include <limits>
2321
#include <cinttypes>
2422
#include <cmath>
23+
#include <cstring>
24+
#include <limits>
2525
#include <mutex>
2626
#include <optional>
2727
#include <queue>
28-
#include <rcpputils/join.hpp>
2928
#include <string>
3029
#include <vector>
3130

3231
#include "diagnostic_msgs/msg/diagnostic_array.hpp"
32+
#include "rcpputils/join.hpp"
3333
#include "diagnostic_msgs/msg/diagnostic_status.hpp"
3434
#include "diagnostic_msgs/msg/key_value.hpp"
3535
#include "std_msgs/msg/header.hpp"

0 commit comments

Comments
 (0)