Skip to content

Commit

Permalink
Replace i with _ as for loop index
Browse files Browse the repository at this point in the history
  • Loading branch information
ckaraneen committed Dec 24, 2020
1 parent f1d0702 commit 39bae6a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

def mouse(data):
time.sleep(1)
for i in range(5):
for _ in range(5):
time.sleep(1)
my_bpod.manual_override(Bpod.ChannelTypes.INPUT, 'Port',
channel_number=1, value=12)
Expand Down

0 comments on commit 39bae6a

Please sign in to comment.