Skip to content

Commit

Permalink
Update datetimecolumn.py
Browse files Browse the repository at this point in the history
  • Loading branch information
xzkostyan authored Feb 17, 2024
1 parent 1704641 commit 053ca2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clickhouse_driver/columns/numpy/datetimecolumn.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def apply_timezones_after_read(self, dt):
ts = pd.to_datetime(dt, utc=True).tz_convert(timezone)
ts = ts.tz_localize(None)
return ts.to_numpy(self.datetime_dtype)

return dt

def apply_timezones_before_write(self, items):
Expand Down

0 comments on commit 053ca2a

Please sign in to comment.