def urls_contain_wildcard()

in Azure Firewall/Template - Logic App and Automation Account for Adding O365 Rules to Azure Firewall/o365_rules.py [0:0]


def urls_contain_wildcard(urls):
    for url in urls:
        if '*' in url:
            return True
    return False