Skip to content

Commit

Permalink
Merge pull request #208 from sciris/docs-fixes
Browse files Browse the repository at this point in the history
update docstring
  • Loading branch information
cliffckerr committed Jul 8, 2021
2 parents e6074ee + 9c04b65 commit 9d9e01e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sciris/sc_parallel.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def f(x,y):
def myfunc(i, x, y):
np.random.seed()
xy = [x+i*np.random.randn(100), y+i*np.andom.randn(100)]
xy = [x+i*np.random.randn(100), y+i*np.random.randn(100)]
return xy
xylist1 = sc.parallelize(myfunc, kwargs={'x':3, 'y':8}, iterarg=range(5), maxload=0.8, interval=0.2) # Use kwargs dict
Expand Down

0 comments on commit 9d9e01e

Please sign in to comment.