Skip to content

Commit e347e2e

Browse files
Bump version of pre-commit hooks (#3181) (#3183)
(cherry picked from commit 963f2c0) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 28e700b commit e347e2e

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ repos:
5050
args: ["--ignore=D100,D101,D102,D103,D104,D105,D106,D107,D203,D212,D404"]
5151

5252
- repo: https://github.com/psf/black
53-
rev: 26.1.0
53+
rev: 26.3.1
5454
hooks:
5555
- id: black
5656
args: ["--line-length=99"]
@@ -63,7 +63,7 @@ repos:
6363

6464
# CPP hooks
6565
- repo: https://github.com/pre-commit/mirrors-clang-format
66-
rev: v22.1.0
66+
rev: v22.1.2
6767
hooks:
6868
- id: clang-format
6969
args: ['-fallback-style=none', '-i']
@@ -126,14 +126,14 @@ repos:
126126
# Spellcheck in comments and docs
127127
# skipping of *.svg files is not working...
128128
- repo: https://github.com/codespell-project/codespell
129-
rev: v2.4.1
129+
rev: v2.4.2
130130
hooks:
131131
- id: codespell
132132
args: ['--write-changes', '--uri-ignore-words-list=ist', '-L manuel']
133133
exclude: CHANGELOG\.rst|\.(svg|pyc|drawio)$
134134

135135
- repo: https://github.com/python-jsonschema/check-jsonschema
136-
rev: 0.37.0
136+
rev: 0.37.1
137137
hooks:
138138
- id: check-github-workflows
139139
args: ["--verbose"]

controller_manager/test/test_ros2_control_node_launch.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ def generate_test_description():
6666
"urdf",
6767
"test_hardware_components.urdf",
6868
)
69-
with open(urdf) as infp:
70-
robot_description_content = infp.read()
69+
with open(urdf) as info:
70+
robot_description_content = info.read()
7171
robot_description = {"robot_description": robot_description_content}
7272

7373
robot_state_pub_node = launch_ros.actions.Node(

0 commit comments

Comments
 (0)