Closed chase-kimball closed 1 year ago
Lines like kwargs1 = {state='MS', mass=20.0, metallicity=0.014} won't run. Should be kwargs1 = dict(state='MS', mass=20.0, metallicity=0.014)
kwargs1 = {state='MS', mass=20.0, metallicity=0.014}
kwargs1 = dict(state='MS', mass=20.0, metallicity=0.014)
This was fixed by @celiotine
Lines like
kwargs1 = {state='MS', mass=20.0, metallicity=0.014}
won't run. Should bekwargs1 = dict(state='MS', mass=20.0, metallicity=0.014)