Skip to content

Commit 2b4a0ed

Browse files
authored
fix(typing): minor typing fix (#453)
1 parent 335982c commit 2b4a0ed

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

.vscode/settings.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,4 @@
77
"mypy-type-checker.importStrategy": "fromEnvironment",
88
"isort.importStrategy": "fromEnvironment",
99
"black-formatter.importStrategy": "fromEnvironment",
10-
"workbench.colorCustomizations": {
11-
"activityBar.background": "#4D1C3B",
12-
"titleBar.activeBackground": "#6B2752",
13-
"titleBar.activeForeground": "#FDF8FB"
14-
},
1510
}

descope/auth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ def _generate_auth_info(
531531
def generate_jwt_response(
532532
self,
533533
response_body: dict,
534-
refresh_cookie: str,
534+
refresh_cookie: str | None,
535535
audience: str | None | Iterable[str] = None,
536536
) -> dict:
537537
jwt_response = self._generate_auth_info(

0 commit comments

Comments
 (0)