Skip to content

Commit

Permalink
Merge pull request #1610 from codeforpdx/change-partial-text
Browse files Browse the repository at this point in the history
Change "in part - <n...>" to "charges <n...> only"
  • Loading branch information
KentShikama authored Mar 30, 2022
2 parents 37f0af4 + 3114479 commit 55398e3
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 55398e3

Please sign in to comment.