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

Commit 01ac285

Browse files
author
Michael Wall
committed
Fixed line lengths
1 parent 6eb0074 commit 01ac285

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/mainwindow.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -287,13 +287,16 @@ def get_bio():
287287

288288
# setting up like/dislike/Back to Photo buttons on the bio screen
289289
tk.Button(
290-
self.frame, text=self.config['like.text'], background=self.config['like.background'],
290+
self.frame, text=self.config['like.text'],
291+
background=self.config['like.background'],
291292
command=self.new_image).pack(side=tk.RIGHT)
292293
tk.Button(
293-
self.frame, text=self.config['dislike.text'], background=self.config['dislike.background'],
294+
self.frame, text=self.config['dislike.text'],
295+
background=self.config['dislike.background'],
294296
command=self.new_image).pack(side=tk.LEFT)
295297
tk.Button(
296-
self.root, text=self.config['back.text'], background=self.config['back.background'],
298+
self.root, text=self.config['back.text'],
299+
background=self.config['back.background'],
297300
command=back_to_photo).pack(side=tk.BOTTOM)
298301

299302
# packing the frame

0 commit comments

Comments
 (0)