Commit 47a517d9 authored by Cage, Gregory's avatar Cage, Gregory
Browse files

Add minor note about outputs

parent 2cd80886
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -155,7 +155,7 @@ In the Fractal example, the Tool.run comman returns an instance of the `Output`
    output.get_dataset("output").download("image.png")
```

The Outputs can be used by the rest of your application, saved, or simply discarded. If your Datastore is persisted (using the persist() method), then a copy of the Datasets and DatasetCollections will reside on the NDIP platform, so it is not necessary to maintain a local copy.
The Outputs can be used by the rest of your application, saved, or simply discarded. Outputs is also iterable, so you can use a for-loop to loop through all the contained datasets and collections. If your Datastore is persisted (using the persist() method), then a copy of the Datasets and DatasetCollections will reside on the NDIP platform, so it is not necessary to maintain a local copy.

## Next Steps