Skip to content

Commit

Permalink
disable wavelength-dependence and bg export
Browse files Browse the repository at this point in the history
  • Loading branch information
kecnry committed Jul 12, 2024
1 parent 05c4f04 commit fa0d087
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from astropy import units as u
from traitlets import Unicode, observe
from traitlets import Bool, Unicode, observe
from lightkurve import LightCurve

from jdaviz.core.registries import tray_registry
Expand Down Expand Up @@ -29,6 +29,8 @@ class PhotometricExtraction(SpectralExtraction):
"""
resulting_product_name = Unicode("light curve").tag(sync=True)
do_auto_extraction = False
wavelength_dependent_available = Bool(False).tag(sync=True)
bg_export_available = Bool(False).tag(sync=True)

def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
Expand Down

0 comments on commit fa0d087

Please sign in to comment.