incomplete
Identifies and reports incomplete tasks from a set of audit files by running an audit process and echoing the resulting task IDs to the context output.
def incomplete(
ctx: click.Context,
files: tuple
) - > null
Identifies and displays task IDs that failed to finish processing for a given set of input files.
Parameters
| Name | Type | Description |
|---|---|---|
| ctx | click.Context | The Click context object used to access the application's output utilities. |
| files | tuple | A collection of file paths to be audited for task completion status. |
Returns
| Type | Description |
|---|---|
null | This function does not return a value; it outputs incomplete task IDs directly to the console. |