File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -23,9 +23,11 @@ def __init__(
23
23
) -> None :
24
24
"""Initialise a KeycloakClient.
25
25
26
- @param keycloak_base_url: Base URL for Keycloak server
27
- @param keycloak_domain_attribute: Keycloak attribute used to define your domain
28
- @param keycloak_realm: Realm for Keycloak server
26
+ Args:
27
+ keycloak_base_url: Base URL for Keycloak server
28
+ keycloak_domain_attribute: Keycloak attribute used to define your domain
29
+ keycloak_realm: Realm for Keycloak server
30
+ kwargs: OAuthClient keyword arguments
29
31
"""
30
32
self .base_url = keycloak_base_url
31
33
self .domain_attribute = keycloak_domain_attribute
Original file line number Diff line number Diff line change @@ -19,7 +19,9 @@ def __init__(
19
19
) -> None :
20
20
"""Initialise a MicrosoftEntraClient.
21
21
22
- @param entra_tenant_id: Tenant ID for the Entra ID
22
+ Args:
23
+ entra_tenant_id: Tenant ID for the Entra ID
24
+ kwargs: OAuthClient keyword arguments
23
25
"""
24
26
redirect_uri = "urn:ietf:wg:oauth:2.0:oob" # this is the "no redirect" URL
25
27
token_url = (
Original file line number Diff line number Diff line change @@ -85,7 +85,6 @@ ignore = [
85
85
" D104" , # missing-docstring-in-package
86
86
" D203" , # one-blank-line-before-class (due to conflict with D211)
87
87
" D213" , # multi-line-summary-second-line (due to conflict with D212)
88
- " D413" , # missing-blank-line-after-last-section
89
88
" CPY001" , # missing-copyright-notice
90
89
" G010" , # logging-warn (due to incorrect heuristic)
91
90
]
@@ -101,6 +100,7 @@ combine-as-imports = true
101
100
known-first-party = [" apricot" ]
102
101
103
102
[tool .ruff .lint .pydocstyle ]
103
+ convention = " google"
104
104
ignore-decorators = [" typing.overload" ]
105
105
106
106
[tool .mypy ]
You can’t perform that action at this time.
0 commit comments