Проверка шаблона шины для iOS
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

11 行
262B

  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