Update app/main.py
Browse files- app/main.py +1 -0
app/main.py
CHANGED
@@ -935,6 +935,7 @@ def deobfuscate_text(text: str) -> str:
|
|
935 |
text = text.replace("♩", "")
|
936 |
text = text.replace("`♡`", "") # Handle the backtick version too
|
937 |
text = text.replace("♡", "")
|
|
|
938 |
return text
|
939 |
|
940 |
# --- Response Format Conversion ---
|
|
|
935 |
text = text.replace("♩", "")
|
936 |
text = text.replace("`♡`", "") # Handle the backtick version too
|
937 |
text = text.replace("♡", "")
|
938 |
+
text = text.replace("``", "")
|
939 |
return text
|
940 |
|
941 |
# --- Response Format Conversion ---
|