Skip to content

Commit

Permalink
Address pylint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jjaime2 committed Jan 15, 2025
1 parent 1005bc8 commit dbbcaae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ada_feeding/ada_feeding/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -485,5 +485,5 @@ def get_tool_joints(end_effector_tool: str) -> List[str]:

if end_effector_tool in tool_joints:
return tool_joints[end_effector_tool]
else:
raise ValueError(f"Unknown end_effector_tool: {end_effector_tool}")

raise ValueError(f"Unknown end_effector_tool: {end_effector_tool}")
2 changes: 1 addition & 1 deletion ada_feeding/scripts/create_action_servers.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def read_params(self) -> Tuple[Parameter, Parameter, Dict[str, ActionServerParam
-------
action_server_params: A dict mapping server names to ActionServerParams objects.
"""
# pylint: disable=too-many-locals
# pylint: disable=too-many-locals, too-many-branches
# Okay because we are providing a lot of generic capabilities through parameters

default_namespace = CreateActionServers.DEFAULT_PARAMETER_NAMESPACE
Expand Down

0 comments on commit dbbcaae

Please sign in to comment.