File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
example_python/generate_parameter_module_example
parameter_traits/include/parameter_traits Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 3636
3737
3838class MinimalParam (rclpy .node .Node ):
39+
3940 def __init__ (self ):
4041 super ().__init__ ('admittance_controller' )
4142 self .timer = self .create_timer (1 , self .timer_callback )
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments