Passed
Pull Request — 2.x (#1872)
by Jordi
04:50
created

senaite.core.catalog   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 22
dl 0
loc 24
rs 10
c 0
b 0
f 0
1
# -*- coding: utf-8 -*-
2
3
from senaite.core.catalog.analysis_catalog import \
4
    CATALOG_ID as ANALYSIS_CATALOG  # noqa
5
from senaite.core.catalog.analysis_catalog import AnalysisCatalog  # noqa
6
from senaite.core.catalog.auditlog_catalog import \
7
    CATALOG_ID as AUDITLOG_CATALOG  # noqa
8
from senaite.core.catalog.auditlog_catalog import AuditlogCatalog  # noqa
9
from senaite.core.catalog.autoimportlog_catalog import \
10
    CATALOG_ID as AUTOIMPORTLOG_CATALOG  # noqa
11
from senaite.core.catalog.autoimportlog_catalog import \
12
    AutoImportLogCatalog  # noqa
13
from senaite.core.catalog.report_catalog import CATALOG_ID as REPORT_CATALOG  # noqa
14
from senaite.core.catalog.report_catalog import ReportCatalog  # noqa
15
from senaite.core.catalog.sample_catalog import CATALOG_ID as SAMPLE_CATALOG  # noqa
16
from senaite.core.catalog.sample_catalog import SampleCatalog  # noqa
17
from senaite.core.catalog.senaite_catalog import CATALOG_ID as SENAITE_CATALOG  # noqa
18
from senaite.core.catalog.senaite_catalog import SenaiteCatalog  # noqa
19
from senaite.core.catalog.setup_catalog import CATALOG_ID as SETUP_CATALOG  # noqa
20
from senaite.core.catalog.setup_catalog import SetupCatalog  # noqa
21
from senaite.core.catalog.worksheet_catalog import \
22
    CATALOG_ID as WORKSHEET_CATALOG  # noqa
23
from senaite.core.catalog.worksheet_catalog import WorksheetCatalog  # noqa
24