(c)
| 173 | input_data.extend(json.load(reader)["data"]) |
| 174 | |
| 175 | def is_whitespace(c): |
| 176 | if c == " " or c == "\t" or c == "\r" or c == "\n" or ord(c) == 0x202F: |
| 177 | return True |
| 178 | return False |
| 179 | |
| 180 | examples = [] |
| 181 | for entry in input_data: |
no outgoing calls
no test coverage detected