use redundant imports for re-exported names

This commit is contained in:
Jan Petykiewicz 2024-07-28 22:15:26 -07:00
parent e94b93d5af
commit dc58159cdf

View File

@ -27,11 +27,13 @@ The goal is to keep this library simple:
tools for working with hierarchical design data and supports multiple tools for working with hierarchical design data and supports multiple
file formats. file formats.
""" """
from . import basic from . import (
from . import record basic as basic,
from . import records record as record,
from . import elements records as records,
from . import library elements as elements,
library as library,
)
__author__ = 'Jan Petykiewicz' __author__ = 'Jan Petykiewicz'
__version__ = '1.3' __version__ = '1.3'