Skip to content

Commit

Permalink
Applied pre-commit changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rakeshv24 committed Jun 11, 2024
1 parent 09c0412 commit 19edd74
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docking_control/src/docking_control/pwm_publish_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ def __init__(self) -> None:
self.control_pub = rospy.Publisher(
"/mavros/rc/override", OverrideRCIn, queue_size=1
)
self.pwm_sub = rospy.Subscriber("/docking_control/pwm", OverrideRCIn, self.pwm_cb)
self.pwm_sub = rospy.Subscriber(
"/docking_control/pwm", OverrideRCIn, self.pwm_cb
)
self.pwm_data = None
# self.pwm_data = OverrideRCIn()
# self.pwm_data.channels = [OverrideRCIn.CHAN_NOCHANGE] * 18
Expand Down

0 comments on commit 19edd74

Please sign in to comment.