def _replace()

in osci/filter/filter_list_company_projects.py [0:0]


def _replace(value: str, companies: list):
    for data in companies:
        for string in data.get('regex'):
            if re.findall(string, value, re.IGNORECASE):
                return [data.get('Project'), data.get('description')]