Skip to content

Commit 172ca24

Browse files
committed
Updated to fix github error
1 parent f4ad2f4 commit 172ca24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hdp/metric.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ def compute_hemisphere_ranges(measure: xarray.DataArray) -> xarray.DataArray:
225225
slice_end = north_ranges.size
226226
start_indentified = False
227227
for year_index, n_end_points in enumerate(north_ranges):
228-
end_points = np.concat([n_end_points, south_ranges[year_index]])
228+
end_points = np.concatenate([n_end_points, south_ranges[year_index]])
229229

230230
if -1 in end_points and not start_indentified:
231231
slice_start = year_index

0 commit comments

Comments
 (0)