Skip to content

Commit 0ef6cdc

Browse files
committed
STY: fix black issues
1 parent ddcfd7d commit 0ef6cdc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

refellips/objectiveSE.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,8 @@ def logl(self, pvals=None):
381381
if self.lnsigma is not None:
382382
_model = np.r_[psi, delta]
383383
var_y = (
384-
y_err * y_err + np.exp(2 * float(self.lnsigma)) * _model * _model
384+
y_err * y_err
385+
+ np.exp(2 * float(self.lnsigma)) * _model * _model
385386
)
386387
else:
387388
var_y = y_err**2

0 commit comments

Comments
 (0)