diff options
author | Aaron LI <aly@aaronly.me> | 2017-08-01 09:45:07 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2017-08-01 09:45:07 +0800 |
commit | cf0732585dac122c4a45649b240efadedf782181 (patch) | |
tree | 00fbba11811c8fa91919b3c6ed75f37f2a131237 /fg21sim | |
parent | 61d541b224635c3f213cccc0af7c7024885b7d61 (diff) | |
download | fg21sim-cf0732585dac122c4a45649b240efadedf782181.tar.bz2 |
configs: Clean up imports
Signed-off-by: Aaron LI <aly@aaronly.me>
Diffstat (limited to 'fg21sim')
-rw-r--r-- | fg21sim/configs/__init__.py | 3 | ||||
-rw-r--r-- | fg21sim/share.py | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/fg21sim/configs/__init__.py b/fg21sim/configs/__init__.py index d06c12b..fd03381 100644 --- a/fg21sim/configs/__init__.py +++ b/fg21sim/configs/__init__.py @@ -1,5 +1,4 @@ # Copyright (c) 2016-2017 Weitian LI <weitian@aaronly.me> # MIT license -from .manager import ConfigManager -from .checkers import check_configs +# empty :-) diff --git a/fg21sim/share.py b/fg21sim/share.py index 72bc23d..20ebc29 100644 --- a/fg21sim/share.py +++ b/fg21sim/share.py @@ -7,7 +7,7 @@ Globally shared instances/objects shared throughout ``fg21sim``. NOTE: ``global`` and ``globals`` are both preserved by Python :-( """ -from .configs import ConfigManager +from .configs.manager import ConfigManager from .utils.cosmology import Cosmology |