Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
Signed-off-by: Teo Koon Peng <[email protected]>
  • Loading branch information
Teo Koon Peng authored and luca-della-vedova committed Nov 27, 2024
1 parent b560620 commit 7e83337
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion nexus_capabilities/src/capabilities/gripper_capability.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ public: void declare_params(rclcpp_lifecycle::LifecycleNode& node) final;
/**
* @copydoc Capability::configure
*/
public: common::Result<void> configure(rclcpp_lifecycle::LifecycleNode::SharedPtr node,
public: common::Result<void> configure(
rclcpp_lifecycle::LifecycleNode::SharedPtr node,
std::shared_ptr<const ContextManager> ctx_mgr,
BT::BehaviorTreeFactory& bt_factory) final;

Expand Down
3 changes: 2 additions & 1 deletion nexus_workcell_orchestrator/src/workcell_orchestrator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,8 @@ auto WorkcellOrchestrator::_configure(
return;
}

auto ctx = std::make_shared<Context>(this->shared_from_this(), goal_handle);
auto ctx = std::make_shared<Context>(
this->shared_from_this(), goal_handle);
auto task_result =
this->_task_parser.parse_task(goal_handle->get_goal()->task);
if (task_result.error())
Expand Down

0 comments on commit 7e83337

Please sign in to comment.