We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c161d2e commit 95c8754Copy full SHA for 95c8754
descope/management/descoper.py
@@ -1,4 +1,4 @@
1
-from typing import List, Optional
+from typing import List, Optional, Any
2
3
from descope._http_base import HTTPBase
4
from descope.management.common import (
@@ -69,7 +69,7 @@ def update(
69
if not id:
70
raise ValueError("id cannot be empty")
71
72
- body = {"id": id}
+ body: dict[str, Any] = {"id": id}
73
if attributes is not None:
74
body["attributes"] = attributes.to_dict()
75
if rbac is not None:
0 commit comments