Skip to content

Commit 9a63efa

Browse files
committed
minor
1 parent 1dc247d commit 9a63efa

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

psyplot/data.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3136,7 +3136,9 @@ def notnull(a):
31363136
axis=tuple(map(dims.index, sdims)), keepdims=True
31373137
)
31383138
else:
3139-
summed_weights = weights.sum(axis=tuple(map(dims.index, sdims)))
3139+
summed_weights = weights.sum(
3140+
axis=tuple(map(dims.index, sdims))
3141+
)
31403142
weights = weights / summed_weights
31413143
else:
31423144
dims = arr.dims

0 commit comments

Comments
 (0)