6 lines
335 B
Python
6 lines
335 B
Python
|
|
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)
|