Skip to content

Commit 80640ac

Browse files
committed
simplify syntax for #175
1 parent 1c9881e commit 80640ac

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

redminelib/engines/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def bulk_request(self, method, url, container, **params):
9999
for num in range(limit - self.chunk, 0, -self.chunk):
100100
offset += self.chunk
101101
limit -= self.chunk
102-
bulk_params.append(dict(params, **{'offset': offset, 'limit': limit}))
102+
bulk_params.append(dict(params, offset=offset, limit=limit))
103103

104104
# If we need to make just one more request, there's no point in async
105105
if len(bulk_params) == 1:

0 commit comments

Comments
 (0)