From 2236bd1aee160a69362561e7f1fc686e3a6e60ba Mon Sep 17 00:00:00 2001 From: "Patrick J. Roddy" Date: Wed, 18 Sep 2024 17:05:04 +0100 Subject: [PATCH] Add second underscore --- glass/fields.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glass/fields.py b/glass/fields.py index b16df696..f32c1078 100644 --- a/glass/fields.py +++ b/glass/fields.py @@ -144,7 +144,7 @@ def transform_cls(cls: Cls, tfm: ClTransform, pars: tuple[Any, ...] = ()) -> Cls for cl in cls: if cl is not None and len(cl) > 0: monopole = 0.0 if cl[0] == 0 else None - gl, info, _ = gaussiancl(cl, tfm, pars, monopole=monopole) + gl, info, _, _ = gaussiancl(cl, tfm, pars, monopole=monopole) if info == 0: warnings.warn( "Gaussian cl did not converge, inexact transform", stacklevel=2