Skip to content

Commit 11d2d67

Browse files
author
Dmytro Lapshyn
committed
Revert more unnecessary code style changes in
cycletime_test.py
1 parent 0ce823e commit 11d2d67

File tree

1 file changed

+20
-19
lines changed

1 file changed

+20
-19
lines changed

jira_agile_metrics/calculators/cycletime_test.py

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ def jira(custom_fields):
5050
),
5151
Change(
5252
"2018-01-03 01:00:00", [("Flagged", "Impediment", "", "customfield_100")]
53-
), # blocked 1 day in the backlog (doesn't count towards blocked days)
53+
), # blocked 1 day in the backlog
54+
# (doesn't count towards blocked days)
5455
Change(
5556
"2018-01-03 01:01:01",
5657
[
@@ -59,7 +60,7 @@ def jira(custom_fields):
5960
"Backlog",
6061
"Next",
6162
)
62-
]
63+
],
6364
),
6465
Change(
6566
"2018-01-04 10:01:01", [("Flagged", "", "Impediment", "customfield_100")]
@@ -93,7 +94,7 @@ def jira(custom_fields):
9394
"Backlog",
9495
"Next",
9596
)
96-
]
97+
],
9798
),
9899
Change(
99100
"2018-01-04 01:01:01",
@@ -103,7 +104,7 @@ def jira(custom_fields):
103104
"Next",
104105
"Build",
105106
)
106-
]
107+
],
107108
),
108109
Change(
109110
"2018-01-04 10:01:01", [("Flagged", None, "Impediment", "customfield_100")]
@@ -116,7 +117,7 @@ def jira(custom_fields):
116117
"Build",
117118
"QA",
118119
)
119-
]
120+
],
120121
),
121122
Change(
122123
"2018-01-06 01:01:01",
@@ -126,7 +127,7 @@ def jira(custom_fields):
126127
"QA",
127128
"Done",
128129
)
129-
]
130+
],
130131
),
131132
],
132133
),
@@ -151,7 +152,7 @@ def jira(custom_fields):
151152
"Backlog",
152153
"Next",
153154
)
154-
]
155+
],
155156
),
156157
Change(
157158
"2018-01-05 01:01:01",
@@ -161,7 +162,7 @@ def jira(custom_fields):
161162
"Next",
162163
"Build",
163164
)
164-
]
165+
],
165166
),
166167
Change(
167168
"2018-01-06 01:01:01",
@@ -171,15 +172,15 @@ def jira(custom_fields):
171172
"Build",
172173
"Next",
173174
)
174-
]
175+
],
175176
),
176177
Change(
177178
"2018-01-07 01:01:01",
178-
[("Flagged", None, "Awaiting input", "customfield_100")]
179+
[("Flagged", None, "Awaiting input", "customfield_100")],
179180
),
180181
Change(
181182
"2018-01-10 10:01:01",
182-
[("Flagged", "Awaiting input", "", "customfield_100")]
183+
[("Flagged", "Awaiting input", "", "customfield_100")],
183184
), # blocked 3 days
184185
],
185186
),
@@ -213,7 +214,7 @@ def jira_with_skipped_columns(custom_fields):
213214
"Backlog",
214215
"Next",
215216
)
216-
]
217+
],
217218
),
218219
Change(
219220
"2018-01-04 01:01:01",
@@ -223,9 +224,9 @@ def jira_with_skipped_columns(custom_fields):
223224
"Next",
224225
"Done",
225226
),
226-
("resolution", None, "done")
227-
]
228-
), # skipping columns Build and Test
227+
("resolution", None, "done"),
228+
],
229+
), # skipping columns Build and Test
229230
],
230231
),
231232
Issue(
@@ -249,7 +250,7 @@ def jira_with_skipped_columns(custom_fields):
249250
"Backlog",
250251
"Build",
251252
)
252-
]
253+
],
253254
),
254255
Change(
255256
"2018-01-04 01:01:01",
@@ -259,9 +260,9 @@ def jira_with_skipped_columns(custom_fields):
259260
"Build",
260261
"Done",
261262
),
262-
("resolution", None, "done")
263-
]
264-
), # skipping columns Build and Test
263+
("resolution", None, "done"),
264+
],
265+
), # skipping columns Build and Test
265266
],
266267
),
267268
],

0 commit comments

Comments
 (0)