25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

14 satır
319B

  1. from modules.core.basetypes import Step
  2. from modules.core.core import cbpi
  3. from modules.core.proptypes import Property
  4. @cbpi.addon.step.type("Dummy Step")
  5. class Dummy(Step):
  6. text = Property.Text(label="Text", configurable=True, description="WOHOOO")
  7. def execute(self):
  8. #print self.text
  9. pass