Skip to content

Commit

Permalink
Change "in part - <n...>" to "charges <n...> only"
Browse files Browse the repository at this point in the history
  • Loading branch information
KentShikama authored Mar 30, 2022
1 parent 37f0af4 commit 3114479
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/expungeservice/form_filling.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def _build_pdf_for_case(
eligible_charges, ineligible_charges = Case.partition_by_eligibility(case.charges)
in_part = ", ".join([charge.ambiguous_charge_id.split("-")[-1] for charge in eligible_charges])
case_number_with_comments = (
f"{case.summary.case_number} (in part - counts {in_part})"
f"{case.summary.case_number} (charges {in_part} only)"
if ineligible_charges
else case.summary.case_number
)
Expand Down

0 comments on commit 3114479

Please sign in to comment.