The following code+error is a component of a logging in portal, I'm using a theme named sun valley, and I think its because of that particular reason.
def newWin():
zz = tk.Tk()
zz.title('account sign in')
zz.iconbitmap(r'C:\Users\python\Downloads\logo.ico')
newwindowbtn = ttk.Label(root, text="Already have an account? Just sign in then!",
font=('helvetica', 10, 'bold')).place(x=25, y=600)
#bind label
newwindowbtn.bind("<Button-1>", newWin)
Output:
hyperbtn.bind("", new_window) AttributeError: 'NoneType' object has no attribute 'bind'