From 7c32293189d240018b4fcb18d22f558463665040 Mon Sep 17 00:00:00 2001 From: Tristan Date: Mon, 22 Jul 2024 12:31:09 -0400 Subject: [PATCH] Update tap.py --- tap.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tap.py b/tap.py index cc3d0af..b64358b 100644 --- a/tap.py +++ b/tap.py @@ -1,10 +1,6 @@ import tkinter as tk import time -# Create a small widget that calculates BPM based on mouse clicks or space bar taps -# The widget should have a label that displays the current BPM -# The widget should have a button that starts and stops the BPM calculation - click_times = [] # to store click times bpm = 0 # to store bpm running = False # to store if the widget is running @@ -59,4 +55,4 @@ start_stop_button.pack(pady=20) root.bind("