Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial

aryavbharali
2,569 PointsCode Not Working
My Tkinter is working properly in earlier examples, but this thing doesn't run.
import tkinter as tk
class Pymodoro:
def __init__(self, master):
self.master = master
self.main_frame = tk.Frame(
self.master,
bg='white'
)
self.main_frame.pack(
fill=tk.BOTH,
expand=True
)
self.build_grid()
def build_grid(self):
self.main_frame.columnconfigure(0, weight=1)
self.main_frame.rowconfigure(0, weight=1)
self.main_frame.rowconfigure(2, weight=0)
def build_banner(self):
banner = tk.Label(
self.main_frame,
bg='red',
text='Pymodoro',
fg='white',
font=('Helvetica', 24)
)
self.banner.grid(
row=0,
column=0,
sticky='we',
padx=10,
pady=10
)
if __name__ == '__main__':
root = tk.Tk()
Pymodoro(root)
root.mainloop()

aryavbharali
2,569 PointsI'm not getting an error the program just won't launch.
1 Answer

Alexander Davison
65,469 PointsYou forgot to call self.build_banner()
in __init__
, so nothing is pack
ed into the window (thus no window is shown).
Also, in the build_banner
method, you should say banner.grid(...)
, not self.banner.grid(...)

aryavbharali
2,569 PointsThank You! This worked.

Alexander Davison
65,469 PointsNo problem :)
Alexander Davison
65,469 PointsAlexander Davison
65,469 PointsHello aryavbharali,
What is the error you are getting?