mirror of
https://github.com/System-End/github-readme-stats.git
synced 2026-04-19 16:38:23 +00:00
10 lines
188 B
Python
10 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()
|