(word, n)
| 129 | return normalized_string in affirmative_values |
| 130 | |
| 131 | def pluralize(word, n): |
| 132 | return word if n <= 1 else word + 's' |
| 133 | def is_negative(input_string): |
| 134 | # List of negative representations |
| 135 | negative_values = {"false", "no", "n", "0", "nah", "nope", "never", "negative", "f"} |
no outgoing calls
no test coverage detected