forked from platypush/platypush
LINT fixes
This commit is contained in:
parent
26f869b6e4
commit
3fc94181b7
1 changed files with 2 additions and 2 deletions
|
@ -227,7 +227,7 @@ class UserManager:
|
||||||
if not user:
|
if not user:
|
||||||
raise InvalidCredentialsException()
|
raise InvalidCredentialsException()
|
||||||
|
|
||||||
pub_key, priv_key = get_or_generate_jwt_rsa_key_pair()
|
_, priv_key = get_or_generate_jwt_rsa_key_pair()
|
||||||
payload = {
|
payload = {
|
||||||
'username': username,
|
'username': username,
|
||||||
'created_at': datetime.datetime.now().timestamp(),
|
'created_at': datetime.datetime.now().timestamp(),
|
||||||
|
@ -257,7 +257,7 @@ class UserManager:
|
||||||
|
|
||||||
:raises: :class:`platypush.exceptions.user.InvalidJWTTokenException` in case of invalid token.
|
:raises: :class:`platypush.exceptions.user.InvalidJWTTokenException` in case of invalid token.
|
||||||
"""
|
"""
|
||||||
pub_key, priv_key = get_or_generate_jwt_rsa_key_pair()
|
pub_key, _ = get_or_generate_jwt_rsa_key_pair()
|
||||||
|
|
||||||
try:
|
try:
|
||||||
payload = jwt_decode(token.encode(), pub_key, algorithms=['RS256'])
|
payload = jwt_decode(token.encode(), pub_key, algorithms=['RS256'])
|
||||||
|
|
Loading…
Reference in a new issue