From c7a85f9b5b3b743e94f8792afd1dd92c5899197f Mon Sep 17 00:00:00 2001 From: Roy Stegeman Date: Thu, 14 Nov 2024 14:41:16 +0000 Subject: [PATCH] correct docstring indentation --- src/yadism/runner.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/yadism/runner.py b/src/yadism/runner.py index e7b25064..e6a7967b 100644 --- a/src/yadism/runner.py +++ b/src/yadism/runner.py @@ -201,14 +201,14 @@ def drop_cache(self): def replace_nans_with_0(self, out): """ Replace any NaNs in output with 0.0 - The small-x (i.e. large eta) limit is not addressed in LeProHQ because - the high energy limit of the polarized case is not known and that is the - main purpose of LeProHQ. As a result LeProHQ may return NaNs in the - small-x limit, which this function replaces with 0.0. - - Note that the value of x where this plays a role is below the - experimental regime and thus this does not affect the description of - data, but only e.g. the grids used for the FIATLUX photon computation. + The small-x (i.e. large eta) limit is not addressed in LeProHQ because + the high energy limit of the polarized case is not known and that is the + main purpose of LeProHQ. As a result LeProHQ may return NaNs in the + small-x limit, which this function replaces with 0.0. + + Note that the value of x where this plays a role is below the + experimental regime and thus this does not affect the description of + data, but only e.g. the grids used for the FIATLUX photon computation. """ out2 = copy.deepcopy(out)