Example #1
0
def get_deployment_or_userprofile(role):
    return get_user_profile_by_email(
        role) if "@" in role else get_deployment_by_domain(role)
Example #2
0
def get_deployment_or_userprofile(role):
    # type: (text_type) -> Union[UserProfile, Deployment]
    return get_user_profile_by_email(
        role) if "@" in role else get_deployment_by_domain(role)
Example #3
0
def get_deployment_or_userprofile(role):
    return get_user_profile_by_email(role) if "@" in role else get_deployment_by_domain(role)
Example #4
0
def get_deployment_or_userprofile(role):
    # type: (text_type) -> Union[UserProfile, Deployment]
    return get_user_profile_by_email(role) if "@" in role else get_deployment_by_domain(role)