from tilebox.workflows import ExecutionContext, Task
class ProcessScene(Task):
scene_id: str
def execute(self, context: ExecutionContext) -> None:
context.logger.info("Started", scene_id=self.scene_id)
log = context.logger.bind(component="download")
log.debug("Fetching input")