Commit 373b5430 authored by wang's avatar wang

111

parent 0e5a4d5e
import json
online: dict = json.load(open('older.json'))
newVer: dict = json.load(open('newVer.json'))
keys = newVer.keys()
for key in keys:
o = online.get(key)
n = newVer.get(key)
if o != n :
# print(key,'\n', json.dumps(o), '\n\n' , json.dumps(n))
print(f'ENV.{key}', '=', json.dumps(n))
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
No preview for this file type
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment