Skip to content

Commit 804780e

Browse files
authored
fix: fix annnotation of oauths access_token (#855)
1 parent 3d00d74 commit 804780e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

boxsdk/auth/oauth2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def __init__(
5353
store_tokens: Optional[Callable[[str, str], None]] = None,
5454
box_device_id: str = '0',
5555
box_device_name: str = '',
56-
access_token: str = None,
56+
access_token: Optional[str] = None,
5757
refresh_token: Optional[str] = None,
5858
session: Optional[Session] = None,
5959
refresh_lock: Optional[ContextManager] = None,

0 commit comments

Comments
 (0)