Skip to content

Commit fcd46d8

Browse files
pre commit run
1 parent 7772d18 commit fcd46d8

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

example_python/generate_parameter_module_example/minimal_publisher.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636

3737

3838
class MinimalParam(rclpy.node.Node):
39+
3940
def __init__(self):
4041
super().__init__('admittance_controller')
4142
self.timer = self.create_timer(1, self.timer_callback)

parameter_traits/include/parameter_traits/parameter_traits.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ template <typename... Args>
4343
[[deprecated(
4444
"When returning tl::expected<void, std::string> you can call fmt::format "
4545
"directly.")]] auto
46-
ERROR(const std::string& format, Args... args)
47-
-> tl::expected<void, std::string> {
46+
ERROR(const std::string& format,
47+
Args... args) -> tl::expected<void, std::string> {
4848
return tl::make_unexpected(fmt::format(format, args...));
4949
}
5050

0 commit comments

Comments
 (0)