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

6 行
146B

  1. def isPipeRecent(name, entity):
  2. if name in entity.pipes:
  3. props = entity.pipes[name]
  4. return "recent" in props
  5. return False