MCPcopy Create free account
hub / github.com/dedsec1121fk/DedSec / save_notes

Function save_notes

Scripts/Developer Base/Smart Notes.py:103–109  ·  view source on GitHub ↗
(notes)

Source from the content-addressed store, hash-verified

101
102
103def save_notes(notes):
104 try:
105 with open(NOTES_FILE, 'w') as f:
106 json.dump(notes, f, indent=2, ensure_ascii=False)
107 return True
108 except Exception:
109 return False
110
111
112def load_config():

Callers 5

action_for_noteFunction · 0.70
add_note_cursesFunction · 0.70
curses_reminders_menuFunction · 0.70
run_pending_remindersFunction · 0.70
add_note_interactiveFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected