File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ def extract_claims(token: str) -> dict[str, object]:
202
202
return json .loads (base64 .urlsafe_b64decode (payload ))
203
203
204
204
205
- def render_claims (claims : dict [str , typing . Any ]) -> str :
205
+ def render_claims (claims : dict [str , object ]) -> str :
206
206
def _get (name : str ) -> str : # noqa: WPS430
207
207
return claims .get (name , 'MISSING' )
208
208
@@ -218,7 +218,7 @@ def _get(name: str) -> str: # noqa: WPS430
218
218
)
219
219
220
220
221
- def warn_on_reusable_workflow (claims : dict [str , typing . Any ]) -> None :
221
+ def warn_on_reusable_workflow (claims : dict [str , object ]) -> None :
222
222
# A reusable workflow is identified by having different values
223
223
# for its workflow_ref (the initiating workflow) and job_workflow_ref
224
224
# (the reusable workflow).
You can’t perform that action at this time.
0 commit comments