diff --git a/src/basic_memory/sync/utils.py b/src/basic_memory/sync/utils.py index 5218ee1e..4c3f2502 100644 --- a/src/basic_memory/sync/utils.py +++ b/src/basic_memory/sync/utils.py @@ -6,20 +6,6 @@ from typing import Set, Dict, Optional from watchfiles import Change -@dataclass -class FileChange: - """A change to a file detected by the watch service. - - Attributes: - change_type: Type of change (added, modified, deleted) - path: Path to the file - checksum: File checksum (None for deleted files) - """ - - change_type: Change - path: str - checksum: Optional[str] = None - @dataclass class SyncReport: