Skip to content

Commit

Permalink
remove the extra ']' in data processing
Browse files Browse the repository at this point in the history
  • Loading branch information
tigranfah committed Dec 8, 2023
1 parent 1979e5e commit efa240e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/text_format_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def format_key_value(key, value):
print(e)
start = special_tags[key]["start"]
end = special_tags[key]["end"]
return f"{start}{value}{end}]"
return f"{start}{value}{end}"

return formatted_string

Expand Down

0 comments on commit efa240e

Please sign in to comment.