Update beeptimes.py

This commit is contained in:
2026-04-27 16:45:54 +01:00
parent 3299e36205
commit a5bac5d6bd
-15
View File
@@ -1,8 +1,5 @@
import kivy import kivy
import time import time
#kivy.require('1.11.0') # replace with your current kivy version !
from kivy.app import App from kivy.app import App
from kivy.uix.boxlayout import BoxLayout from kivy.uix.boxlayout import BoxLayout
from kivy.uix.label import Label from kivy.uix.label import Label
@@ -67,10 +64,6 @@ print("BeepDetails Directory: "+ filePath)
#f = open(r"C:\Users\William\Documents\University\BeepDetails.log", "r")
Builder.load_string(""" Builder.load_string("""
<MySec>: <MySec>:
rgba: (1,.2,.2,.2) rgba: (1,.2,.2,.2)
@@ -309,14 +302,6 @@ class MyApp(App):
if __name__ == '__main__': if __name__ == '__main__':
MyApp().run() MyApp().run()
# with open(filePath,'r') as f:
# lastLine = None
# lines = f.readlines()
# if lines[-1] != lastLine:
# lastLine = lines[-1]
# return Label(text= lastLine)
#def update(self):
# lastLine = None