From 6c258db879cce0c3ad9be1859db45d6ea6c5ad22 Mon Sep 17 00:00:00 2001 From: Jerry-Jzy Date: Sun, 1 Dec 2024 16:27:55 -0500 Subject: [PATCH] add a blank line to fix Codacy Static Code Analysis --- deepxde/data/pde_operator.py | 1 + 1 file changed, 1 insertion(+) diff --git a/deepxde/data/pde_operator.py b/deepxde/data/pde_operator.py index 1b9cda494..50a97b27f 100644 --- a/deepxde/data/pde_operator.py +++ b/deepxde/data/pde_operator.py @@ -242,6 +242,7 @@ def _losses(self, outputs, loss_fn, inputs, model, num_func, aux=None): if config.autodiff == "forward": # forward mode AD losses=[] + def forward_call(trunk_input): return aux[0]((inputs[0], trunk_input))