(fname)
| 217 | results = [] |
| 218 | completed = set() |
| 219 | def exists(fname): |
| 220 | if fname.startswith('gs://'): |
| 221 | return fs.exists(fname) |
| 222 | else: |
| 223 | return os.path.exists(fname) |
| 224 | if exists(FLAGS.output_file): |
| 225 | with open_file(FLAGS.output_file, 'r') as f: |
| 226 | results = json.load(f) |
nothing calls this directly
no outgoing calls
no test coverage detected