diff options
author | Aaron LI <aly@aaronly.me> | 2017-07-31 20:00:12 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2017-07-31 20:00:12 +0800 |
commit | ec02a0d052dfe3d045994bed7849e513501997e4 (patch) | |
tree | 1397fcb9b7015e008de30366b2d263e90ed8398d /fg21sim/share.py | |
parent | fe6857171f11217fdb3e15fd8f50479c11f521fb (diff) | |
download | fg21sim-ec02a0d052dfe3d045994bed7849e513501997e4.tar.bz2 |
cosmology: Avoid the circular importing issue
Signed-off-by: Aaron LI <aly@aaronly.me>
Diffstat (limited to 'fg21sim/share.py')
-rw-r--r-- | fg21sim/share.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fg21sim/share.py b/fg21sim/share.py index a3b516b..bbe52b4 100644 --- a/fg21sim/share.py +++ b/fg21sim/share.py @@ -29,4 +29,4 @@ CONFIGS = ConfigManager() # NOTE: Once the above shared ``CONFIGS`` setup or loaded with new # configurations, this ``COSMO`` object needs also been updated: # ``COSMO.setup(**CONFIGS.cosmology)`` -COSMO = Cosmology() +COSMO = Cosmology(**CONFIGS.cosmology) |