Skip to content

Commit

Permalink
pre-commit: Update hooks
Browse files Browse the repository at this point in the history
Signed-off-by: Andrej Orsula <[email protected]>
  • Loading branch information
AndrejOrsula committed Nov 25, 2024
1 parent 60cc171 commit 2d684e2
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ repos:
args: ["--profile", "black"]

- repo: https://github.com/psf/black
rev: 24.4.2
rev: 24.10.0
hooks:
- id: black

Expand All @@ -38,11 +38,11 @@ repos:
- id: beautysh

- repo: https://github.com/executablebooks/mdformat
rev: 0.7.17
rev: 0.7.19
hooks:
- id: mdformat

- repo: https://github.com/codespell-project/codespell
rev: v2.2.6
rev: v2.3.0
hooks:
- id: codespell
1 change: 0 additions & 1 deletion examples/ex_clear_planning_scene.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ def main():
# Create callback group that allows execution of callbacks in parallel without restrictions
callback_group = ReentrantCallbackGroup()


# Create MoveIt 2 interface
moveit2 = MoveIt2(
node=node,
Expand Down
2 changes: 1 addition & 1 deletion examples/ex_collision_mesh.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from rclpy.node import Node

from pymoveit2 import MoveIt2
from pymoveit2.robots import panda as robot
from pymoveit2.robots import panda as robot

DEFAULT_EXAMPLE_MESH = path.join(
path.dirname(path.realpath(__file__)), "assets", "suzanne.stl"
Expand Down
1 change: 1 addition & 0 deletions examples/ex_joint_goal.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
from pymoveit2 import MoveIt2, MoveIt2State
from pymoveit2.robots import panda as robot


def main():
rclpy.init()

Expand Down
4 changes: 1 addition & 3 deletions pymoveit2/robots/ur.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,4 @@ def end_effector_name(prefix: str = prefix) -> str:


def gripper_joint_names(prefix: str = prefix) -> List[str]:
return [

]
return []

0 comments on commit 2d684e2

Please sign in to comment.