Проверка шаблона шины для iOS
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

pipeFormat.py 417B

il y a 11 mois
1234567891011121314
  1. def pipeFormat(fmtExRecent, fmtRecent, fmtSet, fmtToggle, fmtToggleNil, name, entity):
  2. props = entity.pipes[name]
  3. if "recent" and "ex" in props:
  4. return fmtExRecent
  5. elif "recent" in props:
  6. return fmtRecent
  7. elif "set" in props:
  8. return fmtSet
  9. elif "toggle" in props:
  10. return fmtToggle
  11. elif "toggleNil" in props:
  12. return fmtToggleNil
  13. return "НИНАЮ"