Skip to content
This repository was archived by the owner on Mar 31, 2020. It is now read-only.

Commit 89f3867

Browse files
committed
Fixing indentation
1 parent 6383f0a commit 89f3867

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

src/mainwindow.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -277,21 +277,25 @@ def get_bio():
277277

278278
# setting up like/dislike/Back to Photo buttons on the bio screen
279279
tk.Button(
280-
self.frame, text="Like", background="green", command=self.new_image
280+
self.frame, text="Like", background="green",
281+
command=self.new_image
281282
).pack(side=tk.RIGHT)
282283
tk.Button(
283-
self.frame, text="Dislike", background="red", command=self.new_image
284+
self.frame, text="Dislike", background="red",
285+
command=self.new_image
284286
).pack(side=tk.LEFT)
285287
tk.Button(
286-
self.root, text="Back To Photo", background="blue", command=back_to_photo
288+
self.root, text="Back To Photo", background="blue",
289+
command=back_to_photo
287290
).pack(side=tk.BOTTOM)
288291

289292
# packing the frame
290293
self.frame.pack()
291294

292295
# making and packing the Bio button for users to look at the cat's bio
293296
tk.Button(
294-
self.frame, text="Bio", background="blue", command=get_bio
297+
self.frame, text="Bio", background="blue",
298+
command=get_bio
295299
).pack(side=tk.BOTTOM)
296300

297301
# packing the frame

0 commit comments

Comments
 (0)