from kivy.uix.label import Label class Command_box(Label): def __init__(self,app,**kwargs): # app is used to share information between widgets self.app=app # init Label super(Command_box,self).__init__(**kwargs)