Fetches a list of blobs from the workspace. Inputs: names: list of names of blobs - strings or BlobReferences Returns: list of fetched blobs
(names)
| 365 | |
| 366 | |
| 367 | def FetchBlobs(names): |
| 368 | """Fetches a list of blobs from the workspace. |
| 369 | |
| 370 | Inputs: |
| 371 | names: list of names of blobs - strings or BlobReferences |
| 372 | Returns: |
| 373 | list of fetched blobs |
| 374 | """ |
| 375 | return [FetchBlob(name) for name in names] |
| 376 | |
| 377 | |
| 378 | def FetchBlob(name): |
nothing calls this directly
no test coverage detected
searching dependent graphs…