mirror of
https://github.com/vale981/SecondaryValue
synced 2025-03-04 16:41:38 -05:00
fix chained dependencies
This commit is contained in:
parent
87cd049aa4
commit
f56f054153
2 changed files with 2 additions and 2 deletions
|
@ -64,8 +64,8 @@ class SecondaryValue:
|
|||
continue
|
||||
|
||||
tmp = sec_val(**kwargs)
|
||||
kwargs[name] = tmp[0] if isinstance(tmp, Iterable) else tmp
|
||||
calc_deps[name] = tmp
|
||||
kwargs[name] = tmp
|
||||
|
||||
return kwargs, calc_deps
|
||||
|
||||
|
|
2
setup.py
2
setup.py
|
@ -6,7 +6,7 @@ def readme():
|
|||
return f.read()
|
||||
|
||||
setup(name='SecondaryValue',
|
||||
version='0.0.8',
|
||||
version='0.0.9',
|
||||
description='A helper to calculate the gaussian error propagation.',
|
||||
long_description=readme(),
|
||||
long_description_content_type='text/markdown',
|
||||
|
|
Loading…
Add table
Reference in a new issue