Skip to content

Commit c96879c

Browse files
committed
split long module into 3 modules
Signed-off-by: Nathaniel Starkman (@nstarman) <nstarkman@protonmail.com>
1 parent af34b87 commit c96879c

5 files changed

Lines changed: 560 additions & 541 deletions

File tree

astropy/io/registry/__init__.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@
33
Unified I/O Registry.
44
"""
55

6-
from . import compat, core
6+
from . import base, compat, core, interface
7+
from .base import *
78
from .compat import *
89
from .core import *
10+
from .interface import *
911

10-
__all__ = core.__all__ + compat.__all__
12+
__all__ = core.__all__ + interface.__all__ + compat.__all__ + base.__all__

0 commit comments

Comments
 (0)