14 lines
396 B
Plaintext
14 lines
396 B
Plaintext
{% extends "base" %}
|
|
{% block request %}
|
|
if task_id in SKIP_IN_PATH:
|
|
warnings.warn(
|
|
"Calling client.tasks.get() without a task_id is deprecated "
|
|
"and will be removed in v8.0. Use client.tasks.list() instead.",
|
|
category=DeprecationWarning,
|
|
stacklevel=3,
|
|
)
|
|
|
|
{{ super()|trim }}
|
|
{% endblock %}
|
|
|