Skip to content

Commit

Permalink
Merge pull request #2479 from DemocracyClub/fix-person-name-cleanup-typo
Browse files Browse the repository at this point in the history
repalce -> replace
  • Loading branch information
symroe authored Dec 9, 2024
2 parents 275ca2a + 571bfa2 commit 8d480b4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@


def replace_char(name, char, replace):
name = name.repalce(char, replace)
name = name.replace(char, replace)
return " ".join(name.split()).strip()


Expand Down

0 comments on commit 8d480b4

Please sign in to comment.