Skip to content

Commit 6c0f9f0

Browse files
committed
lint
1 parent 5957038 commit 6c0f9f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rocketsled/examples/batch.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ def wf_creator_rosenbrock(x):
127127
# A batch will only run once rocketsled has seen at
128128
# least batch_size samples. Every batch_size new
129129
# evaluations will lead to another batch optimization.
130-
for bs in range(batch_size):
130+
for _ in range(batch_size):
131131
launchpad.add_wf(
132132
wf_creator_rosenbrock(
133133
[np.random.uniform(-5, 5), np.random.uniform(-5, 5)]

0 commit comments

Comments
 (0)