From aea73e8871f9317940b6ac63c7f2cb9fdfa434db Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 10 Jan 2025 00:02:28 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- Python/pywarpx/callbacks.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Python/pywarpx/callbacks.py b/Python/pywarpx/callbacks.py index 02e62c1e722..d12293e699b 100644 --- a/Python/pywarpx/callbacks.py +++ b/Python/pywarpx/callbacks.py @@ -406,14 +406,17 @@ def callfromafterInitEsolve(f): def installafterInitEsolve(f): installcallback("afterInitEsolve", f) + # ---------------------------------------------------------------------------- def callfromafterInitatRestart(f): installcallback("afterInitatRestart", f) return f + def installafterInitatRestart(f): installcallback("afterInitatRestart", f) + # ---------------------------------------------------------------------------- def callfromafterinit(f): installcallback("afterinit", f)