From 394ba0c14d3248e29d24481e7d5be78b76587048 Mon Sep 17 00:00:00 2001 From: bikegeek <3753118+bikegeek@users.noreply.github.com> Date: Wed, 2 Oct 2024 16:21:22 -0600 Subject: [PATCH] Update mode_2d_arearat_statistics.py try statement on line 548 needed to be indented by one space --- metcalcpy/util/mode_2d_arearat_statistics.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metcalcpy/util/mode_2d_arearat_statistics.py b/metcalcpy/util/mode_2d_arearat_statistics.py index 96646e8a..41ca92c2 100644 --- a/metcalcpy/util/mode_2d_arearat_statistics.py +++ b/metcalcpy/util/mode_2d_arearat_statistics.py @@ -545,7 +545,7 @@ def calculate_2d_arearat_fsa_osa(input_data, columns_names, logger=None): calculated statistic or None if some of the data values are missing or invalid """ - try: + try: safe_log(logger, "debug", "Filtering data based on TWO_D_DATA_FILTER.") filtered_data = column_data_by_name_value(input_data, columns_names, TWO_D_DATA_FILTER)