Files
live-call-asr-monitor/frontend-redesign/patch_imports.py
2026-07-16 11:24:02 +08:00

11 lines
279 B
Python

import re
with open('src/components/SandboxSimulation.tsx', 'r') as f:
content = f.read()
content = content.replace(" ShieldAlert, \n", "")
content = content.replace(" HelpCircle,\n", "")
with open('src/components/SandboxSimulation.tsx', 'w') as f:
f.write(content)