From 707335d1fc78523bc8dfd5c065631f9392ce9cbd Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 25 Nov 2024 19:56:41 +0000 Subject: [PATCH 1/2] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/astral-sh/ruff-pre-commit: v0.5.2 → v0.8.0](https://github.com/astral-sh/ruff-pre-commit/compare/v0.5.2...v0.8.0) - [github.com/pappasam/toml-sort: v0.23.1 → v0.24.2](https://github.com/pappasam/toml-sort/compare/v0.23.1...v0.24.2) - [github.com/pre-commit/pre-commit-hooks: v4.6.0 → v5.0.0](https://github.com/pre-commit/pre-commit-hooks/compare/v4.6.0...v5.0.0) --- .pre-commit-config.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 715af252..15271e9f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.5.2 + rev: v0.8.0 hooks: - id: ruff args: @@ -8,12 +8,12 @@ repos: - --exit-non-zero-on-fix - id: ruff-format - repo: https://github.com/pappasam/toml-sort - rev: v0.23.1 + rev: v0.24.2 hooks: - id: toml-sort-fix exclude: poetry.lock - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.6.0 + rev: v5.0.0 hooks: - id: check-added-large-files - id: check-ast From 2cd47b60fd4db063a0480be20d9b9df891e01a0a Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 25 Nov 2024 19:56:59 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- happypose/toolbox/renderer/geometry.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/happypose/toolbox/renderer/geometry.py b/happypose/toolbox/renderer/geometry.py index 7135c8e2..7530b9e6 100644 --- a/happypose/toolbox/renderer/geometry.py +++ b/happypose/toolbox/renderer/geometry.py @@ -34,14 +34,14 @@ __all__ = ( "make_axes", - "make_grid", - "make_cylinder", "make_box", + "make_cylinder", + "make_grid", "make_plane", - "make_sphere", "make_points", + "make_sphere", ) -__all__ = ("ViewerError", "ViewerClosedError") +__all__ = ("ViewerClosedError", "ViewerError") class ViewerError(Exception):