From be859c258de26b5653fb578abc895178952ddb55 Mon Sep 17 00:00:00 2001 From: Jammy2211 Date: Thu, 26 Mar 2026 20:21:52 +0000 Subject: [PATCH] Remove cb_unit sigma from normalized residual map in subplot_fit The sigma unit label is removed from the normalised residual map colorbar to match the autolens subplot_fit layout where the panel has no unit label. Co-Authored-By: Claude Sonnet 4.6 --- autogalaxy/imaging/plot/fit_imaging_plots.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogalaxy/imaging/plot/fit_imaging_plots.py b/autogalaxy/imaging/plot/fit_imaging_plots.py index bbd28cf9..9e9280dc 100644 --- a/autogalaxy/imaging/plot/fit_imaging_plots.py +++ b/autogalaxy/imaging/plot/fit_imaging_plots.py @@ -46,7 +46,7 @@ def subplot_fit( (fit.signal_to_noise_map, "Signal-To-Noise Map", None), (fit.model_data, "Model Image", None), (fit.residual_map, "Residual Map", None), - (fit.normalized_residual_map, "Normalized Residual Map", r"$\sigma$"), + (fit.normalized_residual_map, "Normalized Residual Map", None), (fit.chi_squared_map, "Chi-Squared Map", r"$\chi^2$"), ] n = len(panels)