From 75ec2095e960671e3d53483d8441bdd454e78e43 Mon Sep 17 00:00:00 2001 From: Shuchang Zheng Date: Thu, 29 May 2025 02:48:51 -0700 Subject: [PATCH] quick fix of indentation in python - quickstart doc (#2507) --- fern/getting-started/quickstart.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fern/getting-started/quickstart.mdx b/fern/getting-started/quickstart.mdx index 2a12a183..69d51ad9 100644 --- a/fern/getting-started/quickstart.mdx +++ b/fern/getting-started/quickstart.mdx @@ -52,8 +52,8 @@ You can also run browser tasks locally with Python code, with a little bit of se skyvern = Skyvern() task = await skyvern.run_task( - prompt="Find the top post on hackernews today", - ) + prompt="Find the top post on hackernews today", + ) print(task.model_dump()) ``` A local browser will pop up. Skyvern will start executing the task in the browser and close the browser when the task is done.