diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-10-29 23:10:40 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-10-29 23:10:40 +0800 |
commit | 9d7c7bb53244d2f79173b0f7fe1c6e91a656a240 (patch) | |
tree | 182f90a2007e1abdca0c721a9c424d7432ea9607 /fg21sim/galactic/snr.py | |
parent | d078c1ae3f7171e9e8252474ce5dbaef37a26281 (diff) | |
download | fg21sim-9d7c7bb53244d2f79173b0f7fe1c6e91a656a240.tar.bz2 |
utils/__init__.py: Only import "setup_logging" from "logging.py"
Since some modules (e.g., healpix.py) under "utils" involves Numba JIT
optimization, which significantly slows the start-up speed, even some
consumers (e.g., bin/fg21sim-webui) do not need them at all.
Fix various import statements of other modules.
NOTE: not test at the moment!
Diffstat (limited to 'fg21sim/galactic/snr.py')
-rw-r--r-- | fg21sim/galactic/snr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fg21sim/galactic/snr.py b/fg21sim/galactic/snr.py index 5fc52e3..b7bfadc 100644 --- a/fg21sim/galactic/snr.py +++ b/fg21sim/galactic/snr.py @@ -15,7 +15,7 @@ import astropy.units as au import healpy as hp import pandas as pd -from ..utils import write_fits_healpix +from ..utils.fits import write_fits_healpix from ..utils.convert import Fnu_to_Tb from ..utils.grid import make_grid_ellipse, map_grid_to_healpix |