Skip to content

Commit

Permalink
Small fix to make tests pass, need to revisit later
Browse files Browse the repository at this point in the history
  • Loading branch information
Rodot- committed Aug 7, 2024
1 parent 0bc5362 commit ffdb82d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tardis/opacities/opacity_solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def __init__(
self.line_interaction_type = line_interaction_type
self.disable_line_scattering = disable_line_scattering
if (
self.line_interaction_type == "macroatom"
self.line_interaction_type in ("macroatom", "downbranch") # TODO: Fix this
): # Need a switch to use the continuum solver
self.macro_atom_solver = MacroAtomSolver()
else:
Expand Down

0 comments on commit ffdb82d

Please sign in to comment.