Skip to content

Commit 80640ac

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redminelib/engines/base.py

+1-1
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)