We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0d9b42 commit cdf23e4Copy full SHA for cdf23e4
do_sth.py
@@ -7,7 +7,7 @@
7
class App:
8
def __init__(self, root):
9
self.root = root
10
- self.root.title("Automatisierungswerkzeug")
+ self.root.title("Automation Tool")
11
12
self.action_var = tk.StringVar(value="click")
13
self.keys_var1 = tk.StringVar(value="F1")
@@ -85,7 +85,7 @@ def start_action(self):
85
threading.Thread(target=self.execute_action).start()
86
87
def execute_action(self):
88
- time.sleep(3) # 3 Sekunden Verzögerung
+ time.sleep(3) # 3 seconds delay
89
action = self.action_var.get()
90
if action in ("click", "dbl_click", "r_click"):
91
x = int(self.x_var.get())
0 commit comments