Skip to content

Commit 606b55d

Browse files
authoredApr 20, 2023
Merge pull request #410 from dschenkelman/patch-1
Fix sample for sign in with username + password
2 parents c41b582 + ad9353f commit 606b55d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ supabase: Client = create_client(url, key)
117117
# Sign in using the user email and password.
118118
random_email: str = "3hf82fijf92@supamail.com"
119119
random_password: str = "fqj13bnf2hiu23h"
120-
user = supabase.auth.sign_in(email=random_email, password=random_password)
120+
user = supabase.auth.supabase.auth.sign_in_with_password({ "email": random_email, "password": random_password })
121121
```
122122

123123
## Managing Data

0 commit comments

Comments
 (0)