Skip to content

Commit 95c8754

Browse files
committed
fix type
1 parent c161d2e commit 95c8754

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

descope/management/descoper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import List, Optional
1+
from typing import List, Optional, Any
22

33
from descope._http_base import HTTPBase
44
from descope.management.common import (
@@ -69,7 +69,7 @@ def update(
6969
if not id:
7070
raise ValueError("id cannot be empty")
7171

72-
body = {"id": id}
72+
body: dict[str, Any] = {"id": id}
7373
if attributes is not None:
7474
body["attributes"] = attributes.to_dict()
7575
if rbac is not None:

0 commit comments

Comments
 (0)