supplier_central_frontend/fix.py

6 lines
335 B
Python
Raw Normal View History

with open('/home/vignesh/github/Tiproemail/aws_cdk/lib/betasupplier-site-stack.ts', 'r') as f:
content = f.read()
content = content.replace(' }\n errorResponses: [', ' },\n errorResponses: [')
with open('/home/vignesh/github/Tiproemail/aws_cdk/lib/betasupplier-site-stack.ts', 'w') as f:
f.write(content)