Skip to content

Commit 9526b6f

Browse files
authored
Merge pull request #2432 from eerovaher/rm-future
Remove last `from __future__` imports
2 parents eeb0d07 + 7c01848 commit 9526b6f

File tree

7 files changed

+0
-15
lines changed

7 files changed

+0
-15
lines changed

astroquery/esa/iso/tests/setup_package.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
1010
"""
1111

12-
from __future__ import absolute_import
13-
1412
import os
1513

1614

astroquery/exoplanet_orbit_database/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
66
:Author: Brett M. Morris ([email protected])
77
"""
8-
from __future__ import (absolute_import, division, print_function,
9-
unicode_literals)
108
from .exoplanet_orbit_database import (ExoplanetOrbitDatabase,
119
ExoplanetOrbitDatabaseClass)
1210
from astropy import config as _config

astroquery/exoplanet_orbit_database/exoplanet_orbit_database.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
# Licensed under a 3-clause BSD style license - see LICENSE.rst
2-
from __future__ import (absolute_import, division, print_function,
3-
unicode_literals)
42
import json
53
import os
64

astroquery/exoplanet_orbit_database/tests/test_exoplanet_orbit_database.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import (absolute_import, division, print_function,
2-
unicode_literals)
31
import os
42

53
import pytest

astroquery/query.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
# Licensed under a 3-clause BSD style license - see LICENSE.rst
2-
from __future__ import (absolute_import, division, print_function,
3-
unicode_literals)
42
import abc
53
import inspect
64
import pickle

astroquery/sdss/core.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
"""
33
Access Sloan Digital Sky Survey database online.
44
"""
5-
from __future__ import (absolute_import, division, print_function,
6-
unicode_literals)
75
import io
86
import warnings
97
import numpy as np

astroquery/sdss/field_names.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
# Licensed under a 3-clause BSD style license - see LICENSE.rst
2-
from __future__ import (absolute_import, division, print_function,
3-
unicode_literals)
4-
52
import json
63
import warnings
74

0 commit comments

Comments
 (0)