Skip to content

Commit

Permalink
Fixed duplicate function name
Browse files Browse the repository at this point in the history
  • Loading branch information
drgrigg committed Dec 15, 2023
1 parent b64d99b commit ba5473b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions se/formatting.py
Original file line number Diff line number Diff line change
Expand Up @@ -1277,7 +1277,7 @@ def check_badly_formed(text) -> bool:
return (right_angle_index < left_angle_index)


def remove_tags(text: str) -> str:
def get_untagged(text: str) -> str:
"""
Remove HTML tags from a string.
Expand Down Expand Up @@ -1318,7 +1318,7 @@ def process_tagged_string(text: str) -> str:
A titlecased version of the tagged input string
"""
untagged = remove_tags(text)
untagged = get_untagged(text)
cased = titlecase(untagged)
tagged_index = 0
untagged_index = 0
Expand Down

0 comments on commit ba5473b

Please sign in to comment.