Skip to content

Commit 6a8a6be

Browse files
committed
Fix pre-commit
1 parent e44ce4c commit 6a8a6be

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

docs/conf.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
print("ERROR: the documentation requires the sphinx-astropy package to be installed")
1111
sys.exit(1)
1212

13-
extensions.append('sphinx.ext.autodoc')
14-
extensions.append('autoapi.extension')
13+
extensions.append("sphinx.ext.autodoc")
14+
extensions.append("autoapi.extension")
1515

16-
autoapi_dirs = ['../reproject']
17-
autoapi_options = ['members', 'imported-members', 'inherited-members', 'show-inheritance']
16+
autoapi_dirs = ["../reproject"]
17+
autoapi_options = ["members", "imported-members", "inherited-members", "show-inheritance"]
1818

1919
# -- General configuration ----------------------------------------------------
2020

reproject/hips/__init__.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
from .high_level import * # noqa
2-
from ._dask_array import hips_as_dask_array # noqa
1+
from ._dask_array import hips_as_dask_array
2+
from .high_level import (
3+
coadd_hips,
4+
reproject_from_hips,
5+
reproject_to_hips,
6+
)
37

48
__all__ = ["reproject_from_hips", "reproject_to_hips", "coadd_hips", "hips_as_dask_array"]

reproject/mosaicking/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from .coadd import * # noqa
2-
from .wcs_helpers import * # noqa
1+
from .coadd import reproject_and_coadd
2+
from .wcs_helpers import find_optimal_celestial_wcs
33

44
__all__ = ["reproject_and_coadd", "find_optimal_celestial_wcs"]

0 commit comments

Comments
 (0)