Ejemplo n.º 1
0
def default_choice():
    ui.text_success("I'm the default")
Ejemplo n.º 2
0
def default_choice():
    ui.text_success("I'm the default")
Ejemplo n.º 3
0
 def print_y(cls):
     ui.text_success("I staticly belong to {}".format(cls.__name__))
Ejemplo n.º 4
0
 def print_0():
     ui.text_success("I'm entirely static (and ecstatic :) )")
Ejemplo n.º 5
0
 def print_x(self):
     ui.text_success("I belong to instance of {}".format(
         self.__class__.__name__))
Ejemplo n.º 6
0
 def print_0():
     ui.text_success("I'm entirely static (and ecstatic :) )")
Ejemplo n.º 7
0
 def print_y(cls):
     ui.text_success("I staticly belong to {}".format(cls.__name__))
Ejemplo n.º 8
0
 def print_x(self):
     ui.text_success("I belong to instance of {}".format(self.__class__.__name__))
Ejemplo n.º 9
0
def colours():
    ui.text_prompt("prompt")
    ui.text_info("info")
    ui.text_success("success")
    ui.text_error("error")