From db3537d2a9a09fcef3743a696619b1d9d6d0172f Mon Sep 17 00:00:00 2001 From: Jeff Hale Date: Fri, 9 Feb 2024 18:06:24 -0500 Subject: [PATCH] Update docstring for `run_deployment` tags parameter (#11955) Co-authored-by: Chris Guidry --- src/prefect/deployments/deployments.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/prefect/deployments/deployments.py b/src/prefect/deployments/deployments.py index a16ac1d2efad..9a059395b428 100644 --- a/src/prefect/deployments/deployments.py +++ b/src/prefect/deployments/deployments.py @@ -93,13 +93,13 @@ async def run_deployment( run metadata immediately. Setting `timeout` to None will allow this function to poll indefinitely. Defaults to None. poll_interval: The number of seconds between polls - tags: A list of tags to associate with this flow run; note that tags are used - only for organizational purposes. + tags: A list of tags to associate with this flow run; tags can be used in + automations and for organizational purposes. idempotency_key: A unique value to recognize retries of the same run, and prevent creating multiple flow runs. work_queue_name: The name of a work queue to use for this run. Defaults to the default work queue for the deployment. - as_subflow: Whether or not to link the flow run as a subflow of the current + as_subflow: Whether to link the flow run as a subflow of the current flow or task run. """ if timeout is not None and timeout < 0: