fix: remove unused FileChange dataclass

This commit is contained in:
phernandez
2025-02-13 17:50:59 -06:00
parent f1eeaee104
commit eb3360cc22
-14
View File
@@ -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: