From 0cce241432a002d28403552e7e24d656d2abde45 Mon Sep 17 00:00:00 2001 From: Brock Date: Tue, 18 Oct 2022 11:44:04 -0700 Subject: [PATCH] fix rebase snafu --- pandas/core/arrays/datetimes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/arrays/datetimes.py b/pandas/core/arrays/datetimes.py index 403850b2e708e..ca0a745c180e9 100644 --- a/pandas/core/arrays/datetimes.py +++ b/pandas/core/arrays/datetimes.py @@ -2147,7 +2147,7 @@ def _sequence_to_dt64ns( # TODO: if tz is UTC, are there situations where we *don't* want a # copy? tz_localize_to_utc always makes one. data = tzconversion.tz_localize_to_utc( - data.view("i8"), tz, ambiguous=ambiguous, reso=data_unit + data.view("i8"), tz, ambiguous=ambiguous, creso=data_unit ) data = data.view(new_dtype)