Skip to content

Commit

Permalink
Fix docstring code snippets
Browse files Browse the repository at this point in the history
  • Loading branch information
arbennett committed May 8, 2019
1 parent 0005558 commit 042d656
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions pysumma/ensemble.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ class Ensemble(object):
a dask ``Client``.
A standard workflow for running an ensemble is::
import pysumma as ps
param_options = {
Expand Down
2 changes: 2 additions & 0 deletions pysumma/simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ class Simulation():
be simulated.
A standard workflow for running a simulation locally is::
import pysumma as ps
s = ps.Simulation('summa.exe', 'file_manager.txt')
s.start('local')
Expand All @@ -27,6 +28,7 @@ class Simulation():
print(s.output)
A standard workflow for running a simulation through docker is::
import pysumma as ps
s = ps.Simulation('summa:develop', 'file_manager.txt')
s.start('docker')
Expand Down

0 comments on commit 042d656

Please sign in to comment.