remove used DbProtocol class

This commit is contained in:
phernandez
2025-01-03 11:37:33 -06:00
parent 3202a8cfc1
commit 102e830383
@@ -12,18 +12,6 @@ from basic_memory.services.sync.utils import FileState, SyncReport, ScanResult
from basic_memory.utils.file_utils import compute_checksum
class DbRecord(Protocol):
"""Protocol for database records with path and checksum."""
@property
def file_path(self) -> Optional[str]: ...
@property
def path_id(self) -> str: ...
@property
def checksum(self) -> Optional[str]: ...
T = TypeVar('T', bound=DbRecord)
class FileChangeScanner:
"""