Skip to content

Commit 39bae6a

Browse files
committed
Replace i with _ as for loop index
1 parent f1d0702 commit 39bae6a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/emulator_examples/global_counter_example_manual_override.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
def mouse(data):
3434
time.sleep(1)
35-
for i in range(5):
35+
for _ in range(5):
3636
time.sleep(1)
3737
my_bpod.manual_override(Bpod.ChannelTypes.INPUT, 'Port',
3838
channel_number=1, value=12)

0 commit comments

Comments
 (0)