Skip to content

Commit 32988db

Browse files
committed
fix readmes and changes
1 parent 3f4d56a commit 32988db

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Once your SDK object is set, create any of the Appwrite service objects and choo
4646
```python
4747
users = Users(client)
4848

49-
result = users.create('[email protected]', 'password')
49+
result = users.create('[USER_ID]', '[email protected]', 'password')
5050
```
5151

5252
### Full Example
@@ -65,7 +65,7 @@ client = Client()
6565

6666
users = Users(client)
6767

68-
result = users.create('[email protected]', 'password')
68+
result = users.create('[USER_ID]', '[email protected]', 'password')
6969
```
7070

7171
### Error Handling
@@ -74,7 +74,7 @@ The Appwrite Python SDK raises `AppwriteException` object with `message`, `code`
7474
```python
7575
users = Users(client)
7676
try:
77-
result = users.create('[email protected]', 'password')
77+
result = users.create('[USER_ID]', '[email protected]', 'password')
7878
except AppwriteException as e:
7979
print(e.message)
8080
```

0 commit comments

Comments
 (0)