Skip to content

Commit ecce794

Browse files
committed
fix import grouping
1 parent 7b5abae commit ecce794

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

astroquery/jplhorizons/core.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
# Licensed under a 3-clause BSD style license - see LICENSE.rst
2-
from typing import Mapping
32

43
# 1. standard library imports
5-
from numpy import nan
6-
from numpy import isnan
7-
from numpy import ndarray
84
from collections import OrderedDict
5+
from typing import Mapping
96
import warnings
107

118
# 2. third party imports
@@ -15,6 +12,9 @@
1512
from astropy.time import Time
1613
from astropy.utils.exceptions import AstropyDeprecationWarning
1714
from astropy.utils.decorators import deprecated_renamed_argument, deprecated_attribute
15+
from numpy import nan
16+
from numpy import isnan
17+
from numpy import ndarray
1818

1919
# 3. local imports - use relative imports
2020
# commonly required local imports shown below as example

0 commit comments

Comments
 (0)