(s)
| 186 | |
| 187 | |
| 188 | def extract_emails(s): |
| 189 | import re |
| 190 | if isinstance(s, str): |
| 191 | email_regex = r"\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}\b" |
| 192 | return re.findall(email_regex, s) |
| 193 | return [] |
| 194 | |
| 195 | |
| 196 | def extract_otps(s): |
nothing calls this directly
no outgoing calls
no test coverage detected