Skip to content

Commit

Permalink
adding back to_f as it is needed
Browse files Browse the repository at this point in the history
  • Loading branch information
erubinst committed Jan 8, 2025
1 parent a76eb0d commit 0c419f9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ def construct_coverage_information(insurance_policy, covered_individuals, tax_ho
next if enrollments_tax_household_for_month_empty?(enrollments_for_month, tax_household)

aptc_tax_credit = insurance_policy.applied_aptc_amount_for(enrollments_for_month, month, tax_household)
has_applied_aptc = true if aptc_tax_credit > 0.0
has_applied_aptc = true if aptc_tax_credit.to_f > 0.0

# if npt and mid month end date, do not include that month if aqhp
next if insurance_policy.term_for_np && mid_month_end?(insurance_policy.end_on, month) && has_applied_aptc
Expand Down

0 comments on commit 0c419f9

Please sign in to comment.