From 9a484e305ce583aac4903e641f5b1374d5a835e4 Mon Sep 17 00:00:00 2001 From: Kurt McKee Date: Thu, 30 Jul 2026 16:44:11 -0500 Subject: [PATCH] Remove flow run label length constraint documentation It's not documented consistently across all methods and is subject to change in the service. --- changelog.d/20260730_164042_kurtmckee_harpoon_narwhals.rst | 5 +++++ src/globus_sdk/services/flows/client.py | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 changelog.d/20260730_164042_kurtmckee_harpoon_narwhals.rst diff --git a/changelog.d/20260730_164042_kurtmckee_harpoon_narwhals.rst b/changelog.d/20260730_164042_kurtmckee_harpoon_narwhals.rst new file mode 100644 index 000000000..4559b7a95 --- /dev/null +++ b/changelog.d/20260730_164042_kurtmckee_harpoon_narwhals.rst @@ -0,0 +1,5 @@ +Documentation +------------- + +- Remove the ``SpecificFlowClient.run_flow`` and ``.update_run`` methods' + ``label`` parameter length constraint documentation. (:pr:`NUMBER`) diff --git a/src/globus_sdk/services/flows/client.py b/src/globus_sdk/services/flows/client.py index 00dc45faf..620ec2394 100644 --- a/src/globus_sdk/services/flows/client.py +++ b/src/globus_sdk/services/flows/client.py @@ -812,7 +812,7 @@ def update_run( Update the metadata of a specific run. :param run_id: The ID of the run to update - :param label: A short human-readable title (1 - 64 chars) + :param label: A short human-readable title. :param tags: A collection of searchable tags associated with the run. Tags are normalized by stripping leading and trailing whitespace, and replacing all whitespace with a single space. @@ -1106,7 +1106,7 @@ def run_flow( """ :param body: The input json object handed to the first flow state. The flows service will validate this object against the flow's supplied input schema. - :param label: A short human-readable title (1 - 64 chars) + :param label: A short human-readable title. :param tags: A collection of searchable tags associated with the run. Tags are normalized by stripping leading and trailing whitespace, and replacing all whitespace with a single space.