Skip to content

Commit a89c84a

Browse files
authored
Add kwargs to JWTAuth constructor (#234)
Fixes #231.
1 parent ab477df commit a89c84a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

boxsdk/auth/jwt_auth.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ def __init__(
3939
network_layer=None,
4040
jwt_algorithm='RS256',
4141
rsa_private_key_data=None,
42+
**kwargs
4243
):
4344
"""Extends baseclass method.
4445
@@ -148,6 +149,7 @@ def __init__(
148149
access_token=access_token,
149150
refresh_token=None,
150151
network_layer=network_layer,
152+
**kwargs
151153
)
152154
self._rsa_private_key = rsa_private_key
153155
self._enterprise_id = enterprise_id

0 commit comments

Comments
 (0)