11 lines
279 B
Python
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)
|