Skip to content

Commit

Permalink
Formatting and linting
Browse files Browse the repository at this point in the history
  • Loading branch information
amalnanavati committed Sep 6, 2023
1 parent 3b425ca commit ebaf180
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion ada_feeding/ada_feeding/trees/move_to_configuration_tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ def create_move_to_tree(
[move_to_namespace_prefix, "max_acceleration_scaling_factor"]
)
self.blackboard.register_key(
key=max_acceleration_scaling_factor_key, access=py_trees.common.Access.WRITE,
key=max_acceleration_scaling_factor_key,
access=py_trees.common.Access.WRITE,
)

# Write the inputs to MoveToConfiguration to blackboard
Expand Down
5 changes: 3 additions & 2 deletions ada_feeding/ada_feeding/trees/move_to_pose_tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class MoveToPoseTree(MoveToTree):
A behavior tree that consists of a single behavior, MoveToPose.
"""

# pylint: disable=too-many-instance-attributes, too-many-arguments
# pylint: disable=too-many-instance-attributes, too-many-arguments, too-many-locals
# Many arguments is fine for this class since it has to be able to configure all parameters
# of its constraints.
# pylint: disable=dangerous-default-value
Expand Down Expand Up @@ -259,7 +259,8 @@ def create_move_to_tree(
[move_to_namespace_prefix, "max_acceleration_scaling_factor"]
)
self.blackboard.register_key(
key=max_acceleration_scaling_factor_key, access=py_trees.common.Access.WRITE,
key=max_acceleration_scaling_factor_key,
access=py_trees.common.Access.WRITE,
)

# Write the inputs to MoveToPose to blackboard
Expand Down

0 comments on commit ebaf180

Please sign in to comment.