Skip to content

Commit df63ff7

Browse files
committed
lint
1 parent 0804eab commit df63ff7

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/clusterfuzz/_internal/issue_management/jira/issue_tracker_manager.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222

2323
UNCREATED_JIRA_ISSUE_ID = -1
2424

25+
2526
class IssueTrackerManager:
2627
"""Issue tracker manager."""
2728

@@ -55,7 +56,13 @@ def save(self, issue):
5556

5657
def create(self):
5758
"""Create an issue object locally."""
58-
raw_fields = {'id': f'{UNCREATED_JIRA_ISSUE_ID}', 'fields': {'components': [], 'labels': []}}
59+
raw_fields = {
60+
'id': f'{UNCREATED_JIRA_ISSUE_ID}',
61+
'fields': {
62+
'components': [],
63+
'labels': []
64+
}
65+
}
5966
# Create jira issue object
6067
jira_issue = jira.resources.Issue({},
6168
jira.resilientsession.ResilientSession(),

0 commit comments

Comments
 (0)