Skip to content

Commit

Permalink
Reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
XKTZ committed Sep 27, 2024
1 parent 9e7f846 commit 329d6eb
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,11 @@ def perform(self):

yield requests

for request, request_indices, i \
in zip(requests, req_inds, range(window_size, len(indices), window_size - 1)):
for request, request_indices, i in zip(
requests,
req_inds,
range(window_size, len(indices), window_size - 1),
):
request_indices = [
request_indices[i]
for i in self._unpad(request_indices, request.result)
Expand Down

0 comments on commit 329d6eb

Please sign in to comment.