Skip to content

Commit f2e9cc7

Browse files
committed
Update better_hello_tkinter.py
1 parent a96f64e commit f2e9cc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Chapter01/better_hello_tkinter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def __init__(self, parent, *args, **kwargs):
1818
name_entry = ttk.Entry(self, textvariable=self.name)
1919
ch_button = ttk.Button(self, text="Change", command=self.on_change)
2020
hello_label = ttk.Label(self, textvariable=self.hello_string,
21-
font=("TkDefaultFont", 64), wraplength=600)
21+
font=("TkDefaultFont", 64), wraplength=600)
2222

2323
# Layout form
2424
name_label.grid(row=0, column=0, sticky=tk.W)

0 commit comments

Comments
 (0)