From 14eafbfaefe8d6ea7c321700f777c925c40ed31b Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 2 Dec 2024 21:46:11 +0000 Subject: [PATCH 1/2] chore: [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.7.2 → v0.8.1](https://github.com/astral-sh/ruff-pre-commit/compare/v0.7.2...v0.8.1) --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 5f48550..35595bf 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -20,7 +20,7 @@ repos: - id: trailing-whitespace - repo: https://github.com/astral-sh/ruff-pre-commit - rev: "v0.7.2" + rev: "v0.8.1" hooks: - id: ruff args: ["--fix", "--show-fixes"] From 3fdbe7398fc2ef1c160b2ec3ee2c878ca90d23fa Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 2 Dec 2024 21:47:58 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- src/pylhe/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pylhe/__init__.py b/src/pylhe/__init__.py index d781211..e185f39 100644 --- a/src/pylhe/__init__.py +++ b/src/pylhe/__init__.py @@ -12,7 +12,6 @@ from pylhe.awkward import to_awkward __all__ = [ - "__version__", "LHEEvent", "LHEEventInfo", "LHEFile", @@ -20,16 +19,17 @@ "LHEInitInfo", "LHEParticle", "LHEProcInfo", + "__version__", "read_lhe", "read_lhe_file", "read_lhe_init", "read_lhe_with_attributes", "read_num_events", - "write_lhe_file_path", + "to_awkward", "write_lhe_file", + "write_lhe_file_path", "write_lhe_file_string", "write_lhe_string", - "to_awkward", ]