When I run this code to create a Listbox and change its appearance, I am given the error "'NoneType' object has no attribute 'configure'":
listbox = Listbox(myscreen).grid(row=1, column=0, sticky=NSEW, rowspan=2)
listbox.config(border=2, relief=SUNKEN)
`