personal memory agent
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix formatting in test_importer.py

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

+4 -4
+4 -4
tests/test_importer.py
··· 251 251 252 252 # Stream-based path: day/stream/segment/imported_audio.jsonl 253 253 context = { 254 - "file_path": Path("/journal/20240101/import.text/120000_300/imported_audio.jsonl") 254 + "file_path": Path( 255 + "/journal/20240101/import.text/120000_300/imported_audio.jsonl" 256 + ) 255 257 } 256 258 chunks, meta = format_audio(entries, context) 257 259 ··· 273 275 ] 274 276 275 277 # Legacy path: day/segment/audio.jsonl (no stream directory) 276 - context = { 277 - "file_path": Path("/journal/20240101/123456_300/audio.jsonl") 278 - } 278 + context = {"file_path": Path("/journal/20240101/123456_300/audio.jsonl")} 279 279 chunks, meta = format_audio(entries, context) 280 280 281 281 assert len(chunks) == 1