Skip to content

Commit

Permalink
Fix type hint for oauth_guest_endpoints (#7383)
Browse files Browse the repository at this point in the history
* Fix type hint for oauth_guest_endpoints

* fix pre-commit
  • Loading branch information
aktech authored Oct 10, 2024
1 parent d491f91 commit ef31354
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panel/io/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -825,7 +825,7 @@ def get_server(
oauth_encryption_key: Optional[str] = None,
oauth_jwt_user: Optional[str] = None,
oauth_refresh_tokens: Optional[bool] = None,
oauth_guest_endpoints: Optional[bool] = None,
oauth_guest_endpoints: Optional[list[str]] = None,
oauth_optional: Optional[bool] = None,
login_endpoint: Optional[str] = None,
logout_endpoint: Optional[str] = None,
Expand Down

0 comments on commit ef31354

Please sign in to comment.