We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c565f2 commit d7772f9Copy full SHA for d7772f9
1 file changed
snippets/auth/index.py
@@ -571,8 +571,8 @@ def import_with_scrypt():
571
auth.ImportUserRecord(
572
uid='some-uid',
573
email='user@example.com',
574
- password_hash=b'password_hash',
575
- password_salt=b'salt'
+ password_hash=base64.urlsafe_b64decode('password_hash'),
+ password_salt=base64.urlsafe_b64decode('salt')
576
),
577
]
578
0 commit comments