Skip to content

Commit ea17885

Browse files
committed
Fix typing inference
1 parent a9a640a commit ea17885

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jbi/jira/service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ def update_issue_status(self, context: ActionContext, jira_status: str):
290290
issue_key = context.jira.issue
291291
assert issue_key # Until we have more fine-grained typing of contexts
292292

293-
kwargs = {}
293+
kwargs: dict[str, Any] = {}
294294
if jira_status == "Cancelled":
295295
kwargs["fields"] = {
296296
"resolution": {"name": "Invalid"},

0 commit comments

Comments
 (0)