Skip to content

Commit 4921d14

Browse files
style: ruff autofix (auto)
1 parent 3510bbe commit 4921d14

5 files changed

Lines changed: 449 additions & 298 deletions

File tree

src/connectors/onedrive/oauth.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@
88
logger = logging.getLogger(__name__)
99

1010

11-
def _verify_access_token(
12-
access_token: str | None, tenant_id: str | None = None
13-
) -> dict | None:
11+
def _verify_access_token(access_token: str | None, tenant_id: str | None = None) -> dict | None:
1412
"""
1513
Verify Microsoft access token signature, expiry, audience, and issuer domain.
1614

src/connectors/sharepoint/oauth.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@
88
logger = logging.getLogger(__name__)
99

1010

11-
def _verify_access_token(
12-
access_token: str | None, tenant_id: str | None = None
13-
) -> dict | None:
11+
def _verify_access_token(access_token: str | None, tenant_id: str | None = None) -> dict | None:
1412
"""
1513
Verify Microsoft access token signature, expiry, audience, and issuer domain.
1614

0 commit comments

Comments
 (0)