Hey Bytes Community!

I am currently using Tkinter to create a GUI window, and I ran into a problem. Here is my code:

Code:
from Tkinter import *
import random
import gameinclude
gi = gameinclude

class App:

	def __init__(self, master):
	##########
	#Menu Bar#
	##########
		frame = Frame(master)
		frame.grid()
		menu = Menu(root)
...