> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tilebox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ProgressUpdate.done

```python theme={"system"}
def ProgressUpdate.done(count: int) -> None
```

Mark work as completed on a progress indicator.

Call `done` as the task finishes units of work added with [`ProgressUpdate.add`](/api-reference/python/tilebox.workflows/ProgressUpdate.add).

## Parameters

<ParamField path="count" type="int" required>
  Amount of work to mark as completed.
</ParamField>

## Returns

`None`

<RequestExample>
  ```python Python theme={"system"}
  progress = context.progress("process-items")
  progress.add(len(items))

  for item in items:
      process(item)
      progress.done(1)
  ```
</RequestExample>
