Skip to content

Commit a4acc12

Browse files
authored
Fix payload typo (#6)
1 parent 0120beb commit a4acc12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

warrant/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def create_user(self, user_id="", email=""):
6363
else:
6464
payload = { "userId": user_id }
6565
if email != "":
66-
payloay.update({ "email": email })
66+
payload.update({ "email": email })
6767
json = self._make_post_request(uri="/v1/users", json=payload)
6868
return json['userId']
6969

0 commit comments

Comments
 (0)