From 357606f801325c28008c55080e7693783eaefd3b Mon Sep 17 00:00:00 2001 From: sakshamchoudhary193 Date: Sun, 31 May 2026 08:50:41 +0530 Subject: [PATCH] Update +page.markdoc : Fix typos in python quick-start guide --- src/routes/docs/quick-starts/python/+page.markdoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/docs/quick-starts/python/+page.markdoc b/src/routes/docs/quick-starts/python/+page.markdoc index 63f30e28f03..ad6fd1d7b88 100644 --- a/src/routes/docs/quick-starts/python/+page.markdoc +++ b/src/routes/docs/quick-starts/python/+page.markdoc @@ -60,7 +60,7 @@ After that, create a virtual environment in this directory and activate it. # Create a venv python -m venv .venv -# Active the venv in Unix shell +# Activate the venv in Unix shell source .venv/bin/activate # Or in Powershell @@ -217,7 +217,7 @@ def seed_database(): {% section #step-7 step=7 title="Retrieve rows" %} Create a function to retrieve the mock todo data, -then execute the functions in `_main_`. +then execute the functions in `__main__`. ```py from appwrite.query import Query