Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/routes/docs/quick-starts/python/+page.markdoc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down