Skip to content

Commit cdf23e4

Browse files
authored
Update do_sth.py
1 parent a0d9b42 commit cdf23e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

do_sth.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
class App:
88
def __init__(self, root):
99
self.root = root
10-
self.root.title("Automatisierungswerkzeug")
10+
self.root.title("Automation Tool")
1111

1212
self.action_var = tk.StringVar(value="click")
1313
self.keys_var1 = tk.StringVar(value="F1")
@@ -85,7 +85,7 @@ def start_action(self):
8585
threading.Thread(target=self.execute_action).start()
8686

8787
def execute_action(self):
88-
time.sleep(3) # 3 Sekunden Verzögerung
88+
time.sleep(3) # 3 seconds delay
8989
action = self.action_var.get()
9090
if action in ("click", "dbl_click", "r_click"):
9191
x = int(self.x_var.get())

0 commit comments

Comments
 (0)