Skip to content

Commit 85f3c8e

Browse files
committed
Fixed bug added by accident.
1 parent a86e2eb commit 85f3c8e

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

data_cube_utilities/plotter_utils.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,6 @@ def xarray_time_series_plot(dataset, plot_descs, x_coord='longitude',
632632
data_arr_non_extrap_time_bounds = \
633633
[data_arr_time_bounds[0], min(data_arr_time_bounds[1],
634634
times_not_all_nan[-1])]
635-
data_arr_non_extrap_time_bounds = list(map(_n64_to_datetime, data_arr_non_extrap_time_bounds))
636635
# Because the data could be smoothed, the last
637636
# non-extrapolation time is the last time before
638637
# or at the last non-extrapolation time
@@ -651,7 +650,6 @@ def xarray_time_series_plot(dataset, plot_descs, x_coord='longitude',
651650
data_arr_extrap_time_bounds = [max(data_arr_time_bounds[0],
652651
extrap_times[0]),
653652
data_arr_time_bounds[1]]
654-
data_arr_extrap_time_bounds = list(map(_n64_to_datetime, data_arr_extrap_time_bounds))
655653
# Because the data could be smoothed, the first extrapolation time
656654
# is the first time after the last non-extrapolation time for the original data.
657655
extrap_plot_first_time = \

0 commit comments

Comments
 (0)