We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf7a937 commit adbca96Copy full SHA for adbca96
msal/application.py
@@ -2025,7 +2025,9 @@ def __init__(
2025
self._enable_broker = bool(
2026
enable_broker_on_windows and sys.platform == "win32"
2027
or enable_broker_on_mac and sys.platform == "darwin"
2028
- or (enable_broker_on_linux or (enable_broker_on_wsl and is_wsl())) and sys.platform == "linux")
+ or enable_broker_on_linux and sys.platform == "linux"
2029
+ or enable_broker_on_wsl and is_wsl()
2030
+ )
2031
2032
super(PublicClientApplication, self).__init__(
2033
client_id, client_credential=None, **kwargs)
0 commit comments