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 36
36
37
37
38
38
class MinimalParam (rclpy .node .Node ):
39
+
39
40
def __init__ (self ):
40
41
super ().__init__ ('admittance_controller' )
41
42
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>
43
43
[[deprecated(
44
44
" When returning tl::expected<void, std::string> you can call fmt::format "
45
45
" 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> {
48
48
return tl::make_unexpected (fmt::format (format, args...));
49
49
}
50
50
You can’t perform that action at this time.
0 commit comments