Skip to content

Commit de7222e

Browse files
style(pre-commit): autofix
1 parent 856815a commit de7222e

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

system/mrm_handler/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ ament_auto_add_executable(mrm_handler
1212
ament_auto_package(INSTALL_TO_SHARE
1313
launch
1414
config
15-
)
15+
)

system/mrm_handler/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ MRM Handler is a node to select proper MRM from from system failure state contai
4141

4242
## Assumptions / Known limits
4343

44-
TBD.
44+
TBD.

system/mrm_handler/config/mrm_handler.param.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
# setting whether to turn hazard lamp on for each situation
1616
turning_hazard_on:
17-
emergency: true
17+
emergency: true

system/mrm_handler/include/mrm_handler/mrm_handler_core.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -157,4 +157,4 @@ class MrmHandler : public rclcpp::Node
157157
bool isArrivedAtGoal();
158158
};
159159

160-
#endif // MRM_HANDLER__MRM_HANDLER_CORE_HPP_
160+
#endif // MRM_HANDLER__MRM_HANDLER_CORE_HPP_

system/mrm_handler/launch/mrm_handler.launch.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@
3636

3737
<param from="$(var config_file)"/>
3838
</node>
39-
</launch>
39+
</launch>

system/mrm_handler/package.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@
2828
<export>
2929
<build_type>ament_cmake</build_type>
3030
</export>
31-
</package>
31+
</package>

system/mrm_handler/schema/mrm_handler.schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,4 @@
9292
},
9393
"required": ["/**"],
9494
"additionalProperties": false
95-
}
95+
}

system/mrm_handler/src/mrm_handler/mrm_handler_core.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ void MrmHandler::publishControlCommands()
190190

191191
// Create timestamp
192192
const auto stamp = this->now();
193-
193+
194194
// Publish hazard command
195195
pub_hazard_cmd_->publish(createHazardCmdMsg());
196196

@@ -588,4 +588,4 @@ bool MrmHandler::isArrivedAtGoal()
588588
}
589589

590590
return false;
591-
}
591+
}

system/mrm_handler/src/mrm_handler/mrm_handler_node.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ int main(int argc, char ** argv)
2929
rclcpp::shutdown();
3030

3131
return 0;
32-
}
32+
}

0 commit comments

Comments
 (0)