Python Forum
[Tkinter] AttributeError: '' object has no attribute 'tk'
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Tkinter] AttributeError: '' object has no attribute 'tk'
#1
I had to seperate this file from the main app, because had some errors that I had to fix them first. However, when I run the app I'm getting AttributeError. What am I missing?

from tkinter import *
from tkinter import Tk
from tkinter.ttk import Combobox
from tkcalendar import *
from tkinter import messagebox, filedialog
import sqlite3

class AddEmp():
    def __init__(self):
        ### FRAMES ###

        # Top Frame - Header
        self.topFrame = Frame(self, height = 100, bg = '#333')
        self.topFrame.pack(fill = X)

        # Center Frame - Buttons
        self.centerFrame= Frame(self, height = 750, bg = '#121212')
        self.centerFrame.pack(fill = X)

        # Top Frame - Data #
        # Header in Top Frame
        self.header_image = PhotoImage(file = 'img/add_employee.png')
        self.header_lbl = Label(self.topFrame, image = self.header_image, bg = '#333')
        self.header_lbl.grid(row = 0, column = 0, padx = 15, pady = 15)
        self.header_introduction = Label(self.topFrame, text = 'Add Employee', fg = '#b3b3b3', bg = '#333')
        self.header_introduction.grid(row = 0, column = 1)

        ######

root = Tk()
app = AddEmp()
root.title('All Fields are required')
root.geometry('440x823+700+150')
root.resizable(False, False)
root.mainloop()
Reply


Messages In This Thread
AttributeError: '' object has no attribute 'tk' - by Maryan - Oct-29-2020, 10:27 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  'NoneType' object has no attribute 'get' zunebuggy 8 1,546 Oct-13-2023, 06:39 PM
Last Post: zunebuggy
  tkinter AttributeError: 'GUI' object has no attribute pfdjhfuys 3 1,673 May-18-2023, 03:30 PM
Last Post: pfdjhfuys
  [Kivy] Windows 10: AttributeError: 'WM_PenProvider' object has no attribute 'hwnd' mikepy 1 2,415 Feb-20-2023, 09:26 PM
Last Post: deanhystad
  [Tkinter] Can't update label in new tk window, object has no attribute tompranks 3 3,675 Aug-30-2022, 08:44 AM
Last Post: tompranks
  AttributeError: 'NoneType' object has no attribute 'get' George87 5 15,738 Dec-23-2021, 04:47 AM
Last Post: George87
  [PyQt] AttributeError: 'NoneType' object has no attribute 'text' speedev 9 11,606 Sep-25-2021, 06:14 PM
Last Post: Axel_Erfurt
  [Tkinter] AttributeError: 'tuple' object has no attribute 'replace' linuxhacker 7 6,973 Aug-08-2020, 12:47 AM
Last Post: linuxhacker
  [Kivy] AttributeError: 'NoneType' object has no attribute 'bind' faszination_92 2 6,354 Apr-12-2020, 07:01 PM
Last Post: Larz60+
  AttributeError: '_tkinter.tkapp' object has no attribute 'place_forget' edphilpot 5 9,295 Dec-20-2019, 09:52 PM
Last Post: joe_momma
  [Tkinter] AttributeError: 'App' object has no attribute 'set_text' Sahil1313 6 12,185 Jun-17-2018, 05:01 AM
Last Post: woooee

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020