aboutsummaryrefslogtreecommitdiffstats
path: root/Zara.py
diff options
context:
space:
mode:
Diffstat (limited to 'Zara.py')
-rw-r--r--Zara.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/Zara.py b/Zara.py
index df4ad0e..52eda5d 100644
--- a/Zara.py
+++ b/Zara.py
@@ -10,7 +10,7 @@ import Main
class MainThread(QThread):
- def __init__(self):
+ def __init__(self):
super(MainThread,self).__init__()
@@ -20,7 +20,7 @@ class MainThread(QThread):
def Task_Gui(self):
Main.TaskExe()
-startFunctions = MainThread()
+startFunctions = MainThread()
class Gui_Start(QMainWindow):
@@ -29,7 +29,7 @@ class Gui_Start(QMainWindow):
super().__init__()
self.zara_ui = Ui_MainWindow()
-
+
self.zara_ui.setupUi(self)
self.zara_ui.pushButton.clicked.connect(self.startFunc)
@@ -72,12 +72,12 @@ class Gui_Start(QMainWindow):
startFunctions.start()
def showtime(self):
-
+
current_time = QTime.currentTime()
label_time = current_time.toString("hh:mm:ss")
- labbel = " Time : " + label_time
+ labbel = " Time : " + label_time
self.zara_ui.textBrowser.setText(labbel)