We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b5abae commit ecce794Copy full SHA for ecce794
astroquery/jplhorizons/core.py
@@ -1,11 +1,8 @@
1
# Licensed under a 3-clause BSD style license - see LICENSE.rst
2
-from typing import Mapping
3
4
# 1. standard library imports
5
-from numpy import nan
6
-from numpy import isnan
7
-from numpy import ndarray
8
from collections import OrderedDict
+from typing import Mapping
9
import warnings
10
11
# 2. third party imports
@@ -15,6 +12,9 @@
15
12
from astropy.time import Time
16
13
from astropy.utils.exceptions import AstropyDeprecationWarning
17
14
from astropy.utils.decorators import deprecated_renamed_argument, deprecated_attribute
+from numpy import nan
+from numpy import isnan
+from numpy import ndarray
18
19
# 3. local imports - use relative imports
20
# commonly required local imports shown below as example
0 commit comments