hisham-cmd's picture
Full Sync: Explicit Commit Operations (Pure & Optimized)
b2be963 verified
Raw
History Blame Contribute Delete
180 Bytes
class ImportProgress:
status: str = "idle" # idle, running, completed, error
total: int = 0
current: int = 0
message: str = ""
import_progress = ImportProgress()