Skip to content

Commit 321837b

Browse files
committed
Jira: Add type for serializer fields variable
1 parent 065ae34 commit 321837b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

atlassian/models/jira/serializer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ def serialize(
9696
mapping = FieldMapping()
9797

9898
f = issue.fields
99-
fields = {}
100-
update = {}
99+
fields: dict[str, Any] = {}
100+
update: dict[str, Any] = {}
101101

102102
_ser_entity_fields(f, fields)
103103
_ser_scalar_fields(f, fields)

0 commit comments

Comments
 (0)