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"] 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", ]