(*_)
| 1689 | manager=manager, |
| 1690 | ) |
| 1691 | def cancel_call(*_): |
| 1692 | job_ids = callback_context.args.getlist("cancelJob") |
| 1693 | executor = _callback.context_value.get().background_callback_manager |
| 1694 | if job_ids: |
| 1695 | for job_id in job_ids: |
| 1696 | executor.terminate_job(job_id) |
| 1697 | return no_update |
| 1698 | |
| 1699 | def _add_assets_resource(self, url_path, file_path): |
| 1700 | res = {"asset_path": url_path, "filepath": file_path} |
nothing calls this directly
no test coverage detected