MCPcopy Create free account
hub / github.com/Open-Bee/DataStudio / is_completed

Method is_completed

datastudio/datasets/data_loader.py:400–404  ·  view source on GitHub ↗

Check if this dataloader has been fully processed.

(self)

Source from the content-addressed store, hash-verified

398 )
399
400 def is_completed(self) -> bool:
401 """Check if this dataloader has been fully processed."""
402 if self.checkpoint_manager:
403 return self.checkpoint_manager.is_completed(self.name)
404 return False
405
406 def has_checkpoint(self) -> bool:
407 """Check if this dataloader has checkpoint tracking enabled and has progress."""

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected