9 lines
171 B
Python
9 lines
171 B
Python
from kivy.uix.label import Label
|
|
|
|
class Command_box(Label):
|
|
|
|
def __init__(self,**kwargs):
|
|
# init Label
|
|
super(Command_box,self).__init__(**kwargs)
|
|
|