Skip to content

Commit 900b413

Browse files
style(pre-commit): autofix
1 parent 4471809 commit 900b413

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

planning/planning_debug_tools/src/perception_replayer/perception_replayer_common.cpp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,11 @@ void PerceptionReplayerCommon::load_rosbag(
7979
// try to load type support for each topic
8080
for (const auto & topic_meta : topics) {
8181
try {
82-
auto library =
83-
rclcpp::get_typesupport_library(topic_meta.type, "rosidl_typesupport_cpp");
82+
auto library = rclcpp::get_typesupport_library(topic_meta.type, "rosidl_typesupport_cpp");
8483
type_support_libs[topic_meta.name] = library;
8584

8685
const rosidl_message_type_support_t * type_support =
87-
rclcpp::get_message_typesupport_handle(
88-
topic_meta.type, "rosidl_typesupport_cpp", *library);
86+
rclcpp::get_message_typesupport_handle(topic_meta.type, "rosidl_typesupport_cpp", *library);
8987

9088
if (type_support) {
9189
type_support_map[topic_meta.name] = std::shared_ptr<const rosidl_message_type_support_t>(

0 commit comments

Comments
 (0)