File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
functions-python/backfill_dataset_service_date_range/src Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change 1010from sqlalchemy .orm import joinedload
1111from sqlalchemy import or_ , func
1212from zoneinfo import ZoneInfo
13- from datetime import timezone
1413from shared .helpers .database import refresh_materialized_view
1514
1615from shared .database_gen .sqlacodegen_models import (
@@ -155,7 +154,7 @@ def backfill_datasets(session: "Session"):
155154 formatting_timezone = extracted_timezone
156155 if formatting_timezone is None :
157156 logging .info ("No timezone found in the validation report." )
158- formatting_timezone = timezone . utc
157+ formatting_timezone = "UTC"
159158
160159 logging .info (
161160 f"Using the timezone: { formatting_timezone } for the service date range."
You can’t perform that action at this time.
0 commit comments