Skip to content

Commit 723c96a

Browse files
authored
Update README.md
Insertion of data code was not correct due to a copy paste error.
1 parent d54e5dd commit 723c96a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ from supabase_py import create_client, Client
121121
url: str = os.environ.get("SUPABASE_TEST_URL")
122122
key: str = os.environ.get("SUPABASE_TEST_KEY")
123123
supabase: Client = create_client(url, key)
124-
data = supabase.table("countries").select("*").execute()
124+
data = supabase.table("countries").insert({"name":"Germany"}).execute()
125125
assert len(data.get("data", [])) > 0
126126
```
127127

0 commit comments

Comments
 (0)