Skip to content

Commit e537267

Browse files
committed
. import
1 parent 063cd85 commit e537267

File tree

1 file changed

+21
-22
lines changed

1 file changed

+21
-22
lines changed

qiita_db/__init__.py

Lines changed: 21 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -6,28 +6,27 @@
66
# The full license is in the file LICENSE, distributed with this software.
77
# -----------------------------------------------------------------------------
88

9-
from . import (
10-
analysis,
11-
archive,
12-
artifact,
13-
base,
14-
commands,
15-
environment_manager,
16-
exceptions,
17-
investigation,
18-
logger,
19-
meta_util,
20-
metadata_template,
21-
ontology,
22-
portal,
23-
processing_job,
24-
reference,
25-
software,
26-
sql_connection,
27-
study,
28-
user,
29-
util,
30-
)
9+
from . import base # noqa
10+
from . import util # noqa
11+
from . import sql_connection # noqa
12+
from . import metadata_template # noqa
13+
from . import analysis # noqa
14+
from . import artifact # noqa
15+
from . import archive # noqa
16+
from . import commands # noqa
17+
from . import environment_manager # noqa
18+
from . import exceptions # noqa
19+
from . import investigation # noqa
20+
from . import logger # noqa
21+
from . import meta_util # noqa
22+
from . import ontology # noqa
23+
from . import portal # noqa
24+
from . import reference # noqa
25+
from . import software # noqa
26+
from . import study # noqa
27+
from . import user # noqa
28+
from . import processing_job # noqa
29+
3130

3231
__version__ = "2025.11"
3332

0 commit comments

Comments
 (0)