We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf81bf7 commit c69825cCopy full SHA for c69825c
1 file changed
backend.py
@@ -6,7 +6,6 @@
6
from utils.helpers import *
7
import time
8
import json
9
-import html
10
11
# --- Flask Application Setup ---
12
app = Flask(__name__)
@@ -100,9 +99,6 @@ def run_simulation_stream():
100
99
if not is_valid:
101
return result
102
103
- # Escape result to prevent XSS
104
- result = html.escape(result)
105
-
106
# Build command
107
command = build_simulation_command(result)
108
logger.debug(f"Running streaming simulation with command: {' '.join(command)}")
0 commit comments