From 891ed980631f658f42ac325d9efaeb1a2bbdcad2 Mon Sep 17 00:00:00 2001 From: tgalvin Date: Fri, 5 Jul 2024 22:19:47 +1000 Subject: [PATCH] typoe fix --- flint/validation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flint/validation.py b/flint/validation.py index f3753eb6..af5592cb 100644 --- a/flint/validation.py +++ b/flint/validation.py @@ -499,7 +499,7 @@ def plot_rms_map( # Pirate no believes get below 10uJy/beam mateeey. Percentile a little more # robust to outliers but much of a much - floor: float = max(1, np.floort(np.log10(np.nanpercentile(rms_data, 16)))) # type: ignore + floor: float = max(1, np.floor(np.log10(np.nanpercentile(rms_data, 16)))) # type: ignore im = ax.imshow( np.log10(rms_data),