Skip to content

Commit 50e5070

Browse files
committed
got a little carried away in last commit
1 parent 6497bd7 commit 50e5070

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

quantities/uncertainquantity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,6 @@ def sum(self, axis=None, dtype=None, out=None):
198198
return UncertainQuantity(
199199
self.magnitude.sum(axis, dtype, out),
200200
self.dimensionality,
201-
(sum(self.uncertainty.magnitude**2, axis, dtype, out))**0.5,
201+
(sum(self.uncertainty.magnitude**2, axis))**0.5,
202202
copy=False
203203
)

0 commit comments

Comments
 (0)