10 lines
306 B
Python
10 lines
306 B
Python
import re
|
|
|
|
with open('src/components/RuleManagement.tsx', 'r') as f:
|
|
content = f.read()
|
|
|
|
content = content.replace(" Check\n} from 'lucide-react';", " Check,\n Upload,\n Download,\n FileDown\n} from 'lucide-react';")
|
|
|
|
with open('src/components/RuleManagement.tsx', 'w') as f:
|
|
f.write(content)
|