Skip to content

Commit 4d41ccc

Browse files
authored
BUG: Fix rebase snafu (pandas-dev#49171)
fix rebase snafu
1 parent eb2ff31 commit 4d41ccc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/arrays/datetimes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2147,7 +2147,7 @@ def _sequence_to_dt64ns(
21472147
# TODO: if tz is UTC, are there situations where we *don't* want a
21482148
# copy? tz_localize_to_utc always makes one.
21492149
data = tzconversion.tz_localize_to_utc(
2150-
data.view("i8"), tz, ambiguous=ambiguous, reso=data_unit
2150+
data.view("i8"), tz, ambiguous=ambiguous, creso=data_unit
21512151
)
21522152
data = data.view(new_dtype)
21532153

0 commit comments

Comments
 (0)