We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7719c49 commit eed3221Copy full SHA for eed3221
1 file changed
pyrogram/parser/html.py
@@ -155,7 +155,7 @@ def unparse(text: str, entities: list):
155
156
if entity_type in ("bold", "italic", "underline", "strike"):
157
start_tag = f"<{entity_type[0]}>"
158
- end_tag = "f</{entity_type[0]}>"
+ end_tag = f"</{entity_type[0]}>"
159
elif entity_type in ("code", "pre", "blockquote"):
160
start_tag = f"<{entity_type}>"
161
end_tag = f"</{entity_type}>"
0 commit comments