Проверка шаблона шины для iOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

fieldFormat.py 262B

10 months ago
12345678910
  1. from generation.isPipeRecent import *
  2. def fieldFormat(fmtPlain, fmtRecent, name, structure):
  3. fmt = fmtPlain
  4. if (
  5. isPipeRecent(name, structure.core) or
  6. isPipeRecent(name, structure.service)
  7. ):
  8. fmt = fmtRecent
  9. return fmt