From dc58159cdf67ffcc083b4b36245beae2140fbd1a Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Sun, 28 Jul 2024 22:15:26 -0700 Subject: [PATCH] use redundant imports for re-exported names --- klamath/__init__.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/klamath/__init__.py b/klamath/__init__.py index 4aef521..60ce57d 100644 --- a/klamath/__init__.py +++ b/klamath/__init__.py @@ -27,11 +27,13 @@ The goal is to keep this library simple: tools for working with hierarchical design data and supports multiple file formats. """ -from . import basic -from . import record -from . import records -from . import elements -from . import library +from . import ( + basic as basic, + record as record, + records as records, + elements as elements, + library as library, + ) __author__ = 'Jan Petykiewicz' __version__ = '1.3'