Skip to content

Commit 0075528

Browse files
committed
str.join raises when passed None
1 parent e931d02 commit 0075528

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

msal/token_cache.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import json
1+
import json
22
import threading
33
import time
44
import logging
@@ -54,7 +54,7 @@ def __init__(self):
5454
home_account_id or "",
5555
environment or "",
5656
self.CredentialType.ACCESS_TOKEN,
57-
client_id,
57+
client_id or "",
5858
realm or "",
5959
target or "",
6060
]).lower(),

0 commit comments

Comments
 (0)