返回 DeepSeek-Reasonix
prefs.py
1 import json
2
3
4 def load(path):
5 """Stored preferences; a missing file simply means no preferences yet."""
6 with open(path) as f:
7 return json.load(f)
8
8 lines PYTHON