Skip to content

Commit 84fb1c6

Browse files
Change link title name (#115)
1 parent 3300e80 commit 84fb1c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data-munging/opa_incidents.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ def match_links(incidents: pd.DataFrame, opas: Dict[str, str]) -> pd.DataFrame:
196196
matched_opas = matched_opas[["url", "report_number", "id", "officer_ids"]]
197197
# Rename columns
198198
matched_opas.columns = ["url", "title", "incident_ids", "officer_ids"]
199-
matched_opas.loc[:, "title"] = "OPA Case " + matched_opas["title"]
199+
matched_opas.loc[:, "title"] = "Closed Case Summary " + matched_opas["title"]
200200
# Add the common fields
201201
matched_opas["link_type"] = "Link"
202202
matched_opas["author"] = "Seattle Office of Police Accountability"

0 commit comments

Comments
 (0)