Skip to content

Commit

Permalink
cut&paste error on adherence report, opt_out change.
Browse files Browse the repository at this point in the history
  • Loading branch information
pbugni committed May 13, 2024
1 parent aa90540 commit 4769b7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion portal/models/reporting.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def empro_row_detail(row, ts_reporting):
or "")
ht = ts_reporting.hard_triggers_for_visit(visit_month)
row['hard_trigger_domains'] = ', '.join(ht) if ht else ""
oo = ts_reporting.soft_triggers_for_visit(visit_month)
oo = ts_reporting.opted_out_domains_for_visit(visit_month)
row['opted_out_domains'] = ', '.join(oo) if oo else ""
st = ts_reporting.soft_triggers_for_visit(visit_month)
row['soft_trigger_domains'] = ', '.join(st) if st else ""
Expand Down

0 comments on commit 4769b7a

Please sign in to comment.