Skip to content

Commit

Permalink
fix: fix annnotation of oauths access_token
Browse files Browse the repository at this point in the history
  • Loading branch information
kunihik0 committed Oct 20, 2023
1 parent 3d00d74 commit faf13b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boxsdk/auth/oauth2.py
Expand Up @@ -53,7 +53,7 @@ def __init__(
store_tokens: Optional[Callable[[str, str], None]] = None,
box_device_id: str = '0',
box_device_name: str = '',
access_token: str = None,
access_token: Optional[str] = None,
refresh_token: Optional[str] = None,
session: Optional[Session] = None,
refresh_lock: Optional[ContextManager] = None,
Expand Down

0 comments on commit faf13b3

Please sign in to comment.