From 11df72b801d407a4ae8d37f43083862f024b139f Mon Sep 17 00:00:00 2001 From: Evan Mattson <35585003+moonbox3@users.noreply.github.com> Date: Thu, 11 Sep 2025 16:33:36 +0900 Subject: [PATCH] Fix sample path (#704) --- .../getting_started/workflow/control-flow/edge_condition.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/python/samples/getting_started/workflow/control-flow/edge_condition.py b/python/samples/getting_started/workflow/control-flow/edge_condition.py index 2dace8b484..63d2977ca4 100644 --- a/python/samples/getting_started/workflow/control-flow/edge_condition.py +++ b/python/samples/getting_started/workflow/control-flow/edge_condition.py @@ -177,9 +177,7 @@ async def main() -> None: # Read Email content from the sample resource file. # This keeps the sample deterministic since the model sees the same email every run. - email_path = os.path.join( - os.path.dirname(os.path.dirname(os.path.realpath(__file__))), "workflow", "resources", "email.txt" - ) + email_path = os.path.join(os.path.dirname(os.path.dirname(os.path.realpath(__file__))), "resources", "email.txt") with open(email_path) as email_file: # noqa: ASYNC230 email = email_file.read()