You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
406 B
19 lines
406 B
5 years ago
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
import re
|
||
|
|
||
|
from ...rule import Rule
|
||
|
|
||
|
|
||
|
class HearingImpairedRule(Rule):
|
||
|
"""Hearing Impaired rule."""
|
||
|
|
||
|
hi_re = re.compile(r'(\bsdh\b)', re.IGNORECASE)
|
||
|
|
||
|
def execute(self, props, pv_props, context):
|
||
|
"""Hearing Impaired."""
|
||
|
name = props.get('name')
|
||
|
if name and self.hi_re.search(name):
|
||
|
return True
|