(notes)
| 101 | |
| 102 | |
| 103 | def 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 | |
| 112 | def load_config(): |
no outgoing calls
no test coverage detected