From 9a58e21c4cb01ba6cf4ea7406a7e9bc441b3e8d6 Mon Sep 17 00:00:00 2001 From: alexjanousekGSA Date: Thu, 14 Aug 2025 09:20:15 -0400 Subject: [PATCH] Fixed anothr bug --- app/utils/s3_csv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/utils/s3_csv.py b/app/utils/s3_csv.py index 353e1c963..7d3dfb4a3 100644 --- a/app/utils/s3_csv.py +++ b/app/utils/s3_csv.py @@ -38,7 +38,7 @@ def convert_s3_csv_timestamps(csv_content): if len(row) > time_column_index and row[time_column_index]: try: row[time_column_index] = convert_report_date_to_preferred_timezone(row[time_column_index]) - except Exception: + except Exception: # nosec B110 pass writer.writerow(row)