Skip to content

Commit 02f036f

Browse files
committed
flake8 cleanups. Rename unused for loop vars argument unpacking.
for loop vars that are unused in for loop get _ prepended to indicate they are supposed to be unused.
1 parent c243d2a commit 02f036f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roundup/rest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1704,7 +1704,7 @@ def summary(self, input):
17041704
'link': self.base_path + '/data/issue/' + issue_id,
17051705
'title': self.db.issue.get(issue_id, 'title')
17061706
}
1707-
for x, ts, uid, action, data in self.db.issue.history(issue_id):
1707+
for _x, ts, _uid, action, data in self.db.issue.history(issue_id):
17081708
if ts < old:
17091709
continue
17101710
if action == 'create':

0 commit comments

Comments
 (0)