Skip to content

Commit 4998bd7

Browse files
committed
Really fixed I hope
1 parent e606291 commit 4998bd7

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

zodipy/line_of_sight.py

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import numpy as np
66

77
from zodipy.component import ComponentLabel
8-
from zodipy.component_params import RRM, WRIGHT
8+
from zodipy.component_params import RRM
99

1010
if TYPE_CHECKING:
1111
import numpy.typing as npt
@@ -48,13 +48,8 @@
4848
ComponentLabel.FEATURE_RRM: DIRBE_CUTOFFS[ComponentLabel.FEATURE],
4949
}
5050

51-
WRIGHT_CUTOFFS: dict[ComponentLabel, tuple[float | np.float64, float | np.float64]] = {
52-
ComponentLabel.CLOUDRING_WRIGHT: (R_0, R_JUPITER),
53-
ComponentLabel.BAND_WRIGHT: (R_0, R_JUPITER),
54-
}
55-
5651

57-
COMPONENT_CUTOFFS = {**DIRBE_CUTOFFS, **RRM_CUTOFFS, **WRIGHT_CUTOFFS}
52+
COMPONENT_CUTOFFS = {**DIRBE_CUTOFFS, **RRM_CUTOFFS}
5853

5954

6055
def integrate_leggauss(

0 commit comments

Comments
 (0)