mirror of
https://github.com/tiennm99/github-readme-stats.git
synced 2026-05-14 12:58:34 +00:00
11 lines
188 B
Python
11 lines
188 B
Python
import os
|
|
|
|
file = open('./vercel.json', 'r')
|
|
str = file.read()
|
|
file = open('./vercel.json', 'w')
|
|
|
|
str = str.replace('"maxDuration": 10', '"maxDuration": 15')
|
|
|
|
file.write(str)
|
|
file.close()
|