From 7bc3d2a3bcbae0041774475bf80e7b05467d5029 Mon Sep 17 00:00:00 2001 From: Bryan Miller Date: Mon, 26 Aug 2019 09:47:36 -0400 Subject: [PATCH] Use standard sixty package --- astroplan/observer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/astroplan/observer.py b/astroplan/observer.py index 7a269121..ca30c251 100644 --- a/astroplan/observer.py +++ b/astroplan/observer.py @@ -1,7 +1,6 @@ # Licensed under a 3-clause BSD style license - see LICENSE.rst from __future__ import (absolute_import, division, print_function, unicode_literals) -from six import string_types # Standard library import datetime @@ -10,6 +9,7 @@ # Third-party from astropy.coordinates import (EarthLocation, SkyCoord, AltAz, get_sun, get_moon, Angle, Longitude) +from six import string_types import astropy.units as u from astropy.time import Time import numpy as np @@ -18,7 +18,7 @@ # Package from .exceptions import TargetNeverUpWarning, TargetAlwaysUpWarning from .moon import moon_illumination, moon_phase_angle -from .target import get_skycoord, SunFlag, MoonFlag +from .target import get_skycoord, SpecialObjectFlag, SunFlag, MoonFlag __all__ = ["Observer", "MAGIC_TIME"]