mirror of
https://github.com/vale981/py-vterm-interaction.el
synced 2025-03-04 09:31:40 -05:00
5 lines
112 B
Python
5 lines
112 B
Python
def dump_json(tempfile, value):
|
|
import json
|
|
|
|
with open(tempfile, "w") as f:
|
|
json.dump(value, f)
|