From 2a0e00807c1f90f51a4acf9731c42fb044e67f71 Mon Sep 17 00:00:00 2001 From: Dave Date: Thu, 23 Nov 2023 08:32:48 +0100 Subject: [PATCH] fix one lint error --- dlt/common/pendulum.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlt/common/pendulum.py b/dlt/common/pendulum.py index fdf003531b..cad5e099eb 100644 --- a/dlt/common/pendulum.py +++ b/dlt/common/pendulum.py @@ -2,7 +2,7 @@ import pendulum # noqa: I251 # force UTC as the local timezone to prevent local dates to be written to dbs -pendulum.set_local_timezone(pendulum.timezone("UTC")) # type: ignore +pendulum.set_local_timezone(pendulum.timezone("UTC")) def __utcnow() -> pendulum.DateTime: