(string)
| 114 | |
| 115 | |
| 116 | def check_refuse(string): |
| 117 | refuse_words = ["however", "sorry"] |
| 118 | return any(word in string.lower() for word in refuse_words) |
| 119 | |
| 120 | |
| 121 | def exact_match(response, answers): |
nothing calls this directly
no outgoing calls
no test coverage detected