Skip to content

Commit ee636dc

Browse files
Don't wrap dx_steps as single-member tuple
1 parent dafee5b commit ee636dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/geophires_x/SurfacePlant.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def integrate_time_series_slice(
2323
if len(_slice) == 1:
2424
return _slice[0]
2525

26-
dx_steps = (len(_slice) - 1)
26+
dx_steps = len(_slice) - 1
2727

2828
return np.trapz(
2929
_slice,

0 commit comments

Comments
 (0)