aboutsummaryrefslogtreecommitdiffstats
path: root/fg21sim/share.py
diff options
context:
space:
mode:
authorAaron LI <aly@aaronly.me>2017-07-31 20:00:12 +0800
committerAaron LI <aly@aaronly.me>2017-07-31 20:00:12 +0800
commitec02a0d052dfe3d045994bed7849e513501997e4 (patch)
tree1397fcb9b7015e008de30366b2d263e90ed8398d /fg21sim/share.py
parentfe6857171f11217fdb3e15fd8f50479c11f521fb (diff)
downloadfg21sim-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.py2
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)