diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-11-09 23:37:09 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-11-09 23:37:09 +0800 |
commit | 9516aec90f7f69b0e468d90e4f2d14a689b5e7db (patch) | |
tree | 988bd8616ecea9dbe9710329fe228c71bda3dd24 /fg21sim/utils | |
parent | 39d0ce0fdb7ee6198da7d5b2b91045f2c4f02b47 (diff) | |
download | fg21sim-9516aec90f7f69b0e468d90e4f2d14a689b5e7db.tar.bz2 |
utils/healpix.py: Fix the import issue
Diffstat (limited to 'fg21sim/utils')
-rw-r--r-- | fg21sim/utils/healpix.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fg21sim/utils/healpix.py b/fg21sim/utils/healpix.py index f72a8a6..9db8d0d 100644 --- a/fg21sim/utils/healpix.py +++ b/fg21sim/utils/healpix.py @@ -33,7 +33,7 @@ import numba as nb import healpy as hp from astropy.io import fits -from . import read_fits_healpix +from .fits import read_fits_healpix logger = logging.getLogger(__name__) |