-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enhancement/joystick interface cleanup #110
Enhancement/joystick interface cleanup #110
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Types do not need to be specified in the docstring, as it is already given by the typehints.
@@ -10,16 +10,17 @@ find_package(rclpy REQUIRED) | |||
find_package(sensor_msgs REQUIRED) | |||
find_package(geometry_msgs REQUIRED) | |||
|
|||
ament_python_install_package(${PROJECT_NAME}) | |||
#ament_python_install_package(${PROJECT_NAME}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove commented out line
Creates a 2D wrench message with the given x, y, and yaw values. | ||
Args: | ||
x (float): The x component of the force vector. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no need to specify type in parentheses, it is already given by the typehints.
No description provided.