def is_valid_name(name):
"""Determine if the provided name is a valid name.
Check to see that the provided board name isn't a UUID.
:param: name: the board name to check.
:returns: True if the name is valid, False otherwise.
"""
return not uuidutils.is_uuid_like(name)
评论列表
文章目录