Spaces:
Paused
Paused
Update app/main.py
Browse files- app/main.py +1 -0
app/main.py
CHANGED
|
@@ -117,6 +117,7 @@ def deobfuscate_text(text: str) -> str:
|
|
| 117 |
text = text.replace("♩", "")
|
| 118 |
text = text.replace("`♡`", "") # Handle the backtick version too
|
| 119 |
text = text.replace("♡", "")
|
|
|
|
| 120 |
text = text.replace("``", "")
|
| 121 |
text = text.replace("`", "")
|
| 122 |
|
|
|
|
| 117 |
text = text.replace("♩", "")
|
| 118 |
text = text.replace("`♡`", "") # Handle the backtick version too
|
| 119 |
text = text.replace("♡", "")
|
| 120 |
+
text = text.replace("` `", "")
|
| 121 |
text = text.replace("``", "")
|
| 122 |
text = text.replace("`", "")
|
| 123 |
|