Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
simplymathematics committed Mar 19, 2024
1 parent b5704c5 commit c317ab2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/gzip/batchMixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ def wrapper(method, **kwargs):
n_batches = 1
for i in range(n_batches):
if append is True:
new_X = X[i * self.batch_size : (i + 1) * self.batch_size] # noqa
new_y = y[i * self.batch_size : (i + 1) * self.batch_size] # noqa
new_X = X[i * self.batch_size : (i + 1) * self.batch_size] # noqa
new_y = y[i * self.batch_size : (i + 1) * self.batch_size] # noqa
indices = func(X=new_X, y=new_y, method=method, n_jobs=n_jobs)
# print("After finding best samples")
# print(f"Length of indices is {len(indices)}")
Expand Down

0 comments on commit c317ab2

Please sign in to comment.