diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 87c5b7f..3450a46 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.4.0 + rev: v6.0.0 hooks: - id: check-added-large-files - id: check-case-conflict @@ -17,7 +17,7 @@ repos: exclude: external/.*$ - repo: https://github.com/pre-commit/mirrors-clang-format - rev: v15.0.6 + rev: v21.1.6 hooks: - id: clang-format exclude: external/.*$ @@ -29,7 +29,7 @@ repos: additional_dependencies: [ pyyaml ] # - id: cmake-lint - - repo: https://github.com/psf/black - rev: 22.12.0 + - repo: https://github.com/psf/black-pre-commit-mirror + rev: 25.11.0 hooks: - id: black diff --git a/include/Particles.h b/include/Particles.h index c9d63fa..7c66159 100644 --- a/include/Particles.h +++ b/include/Particles.h @@ -14,6 +14,6 @@ class Particles : public G4VPhysicsConstructor { virtual void ConstructParticle(); // This method is dummy - virtual void ConstructProcess(){}; + virtual void ConstructProcess() {}; }; #endif