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

isPipeRecent.py 146B

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