From 15e09d7f41d7da72c6fa44eabcf1efdb4716ea79 Mon Sep 17 00:00:00 2001 From: "Sterling G. Baird" Date: Tue, 9 Apr 2024 13:58:39 -0400 Subject: [PATCH] Update my_gh_sample_transfer_workflow.py --- scripts/prefect_scripts/my_gh_sample_transfer_workflow.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/prefect_scripts/my_gh_sample_transfer_workflow.py b/scripts/prefect_scripts/my_gh_sample_transfer_workflow.py index bae7834..6279381 100644 --- a/scripts/prefect_scripts/my_gh_sample_transfer_workflow.py +++ b/scripts/prefect_scripts/my_gh_sample_transfer_workflow.py @@ -14,7 +14,7 @@ class UserInput(RunInput): github_username: str - comments: str + comments: str = "" flag_for_review: bool @@ -49,8 +49,8 @@ async def move_sample( user_input = await pause_flow_run( wait_for_input=UserInput.with_initial_data( description="Please provide your GitHub username, any comments, and whether this sample transfer should be flagged for review.", # noqa: E501 - github_username="sgbaird", - comments="", + # github_username="sgbaird", + # comments="", flag_for_review=False, ), timeout=300,