We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af34b87 commit c96879cCopy full SHA for c96879c
5 files changed
astropy/io/registry/__init__.py
@@ -3,8 +3,10 @@
3
Unified I/O Registry.
4
"""
5
6
-from . import compat, core
+from . import base, compat, core, interface
7
+from .base import *
8
from .compat import *
9
from .core import *
10
+from .interface import *
11
-__all__ = core.__all__ + compat.__all__
12
+__all__ = core.__all__ + interface.__all__ + compat.__all__ + base.__all__
0 commit comments