Skip to content

Commit 8711ab2

Browse files
committed
understanding
1 parent c27ce1e commit 8711ab2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

larger-tricks/beatslicer_idea.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def millis(): return time.monotonic()*1000 # I like millis
5454
while True:
5555
# handle keypresses
5656
pressed = set(trellis.pressed_keys)
57-
for press in pressed - current_press: # this is dumb
57+
for press in pressed - current_press: # I think I understand this now
5858
x, y = press
5959
if not loop_slices[x][y]:
6060
loop_slices[x][y] = True

0 commit comments

Comments
 (0)