Skip to content

Commit 106c6f1

Browse files
committed
Fix PEP 8 check
1 parent 07ef774 commit 106c6f1

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

jdaviz/configs/imviz/plugins/aper_phot_simple/aper_phot_simple.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,8 @@ def vue_do_aper_phot(self, *args, **kwargs):
361361
fitter = LevMarLSQFitter()
362362
y_max = y_data.max()
363363
x_mean = x_data[np.where(y_data == y_max)].mean()
364-
std = 0.5 * (phot_table['semimajor_sigma'][0] + phot_table['semiminor_sigma'][0])
364+
std = 0.5 * (phot_table['semimajor_sigma'][0] +
365+
phot_table['semiminor_sigma'][0])
365366
if isinstance(std, u.Quantity):
366367
std = std.value
367368
gs = Gaussian1D(amplitude=y_max, mean=x_mean, stddev=std)

0 commit comments

Comments
 (0)