Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pre-commit.ci] pre-commit autoupdate #208

Merged
merged 3 commits into from
Nov 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ci:
autoupdate_branch: devel
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.7.4
rev: v0.8.0
hooks:
- id: ruff
args:
Expand All @@ -14,12 +14,12 @@ repos:
hooks:
- id: cmake-format
- repo: https://github.com/pappasam/toml-sort
rev: v0.24.1
rev: v0.24.2
hooks:
- id: toml-sort-fix
exclude: poetry.lock
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v19.1.3
rev: v19.1.4
hooks:
- id: clang-format
args:
Expand Down
5 changes: 1 addition & 4 deletions blender/urdf_to_blender.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,7 @@ def resolve_ros_path(path):
def updateFrameMessage():
callerframerecord = inspect.stack()[1]
info = inspect.getframeinfo(callerframerecord[0])
print(
"Update function %s in script %s:%i"
% (info.function, info.filename, info.lineno)
)
print(f"Update function {info.function} in script {info.filename}:{info.lineno}")


class CreateBlenderObject:
Expand Down