Fixed anothr bug

This commit is contained in:
alexjanousekGSA
2025-08-14 09:20:15 -04:00
parent b81865b384
commit 9a58e21c4c

View File

@@ -38,7 +38,7 @@ def convert_s3_csv_timestamps(csv_content):
if len(row) > time_column_index and row[time_column_index]: if len(row) > time_column_index and row[time_column_index]:
try: try:
row[time_column_index] = convert_report_date_to_preferred_timezone(row[time_column_index]) row[time_column_index] = convert_report_date_to_preferred_timezone(row[time_column_index])
except Exception: except Exception: # nosec B110
pass pass
writer.writerow(row) writer.writerow(row)