Skip to content

Commit

Permalink
style(pre-commit): autofix
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Apr 17, 2023
1 parent 8030a11 commit c4ae0e4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions control/vehicle_cmd_gate/src/pause_interface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ PauseInterface::PauseInterface(rclcpp::Node * node) : node_(node)
publish();
}

bool PauseInterface::is_paused() { return pause_state_.data; }
bool PauseInterface::is_paused()
{
return pause_state_.data;
}

void PauseInterface::publish()
{
Expand Down Expand Up @@ -77,4 +80,4 @@ void PauseInterface::update_pause_state()
}
}
}
} // namespace vehicle_cmd_gate
} // namespace vehicle_cmd_gate

0 comments on commit c4ae0e4

Please sign in to comment.