Commit 1d561795 authored by Andrew Svetlov's avatar Andrew Svetlov

Remove extra spaces in doc example.

parent cd49d532
......@@ -193,9 +193,9 @@ A Simple Hello World Program
self.hi_there["command"] = self.say_hi
self.hi_there.pack(side="top")
self.QUIT = tk.Button(self, text = "QUIT", fg = "red",
command = root.destroy)
self.QUIT.pack(side = "bottom")
self.QUIT = tk.Button(self, text="QUIT", fg="red",
command=root.destroy)
self.QUIT.pack(side="bottom")
def say_hi(self):
print("hi there, everyone!")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment