Skip to content

Commit 45d1714

Browse files
author
Brett Chaldecott
committed
refactor: simplify configuration error message
Make KINDE_CLIENT_ID error message more concise by removing redundant reference to environment variable in the message text.
1 parent 8cf60a8 commit 45d1714

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/simple_http_oauth_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def __init__(self):
8585

8686
# Validate required configurations
8787
if not self.client_id:
88-
raise KindeConfigurationException("KINDE_CLIENT_ID environment variable is required")
88+
raise KindeConfigurationException("KINDE_CLIENT_ID is required")
8989

9090
# Initialize OAuth client without framework (will use null framework)
9191
self.oauth = AsyncOAuth(

0 commit comments

Comments
 (0)