doorstop.core   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 0
eloc 5
dl 0
loc 9
ccs 4
cts 4
cp 1
rs 10
c 0
b 0
f 0
1
# SPDX-License-Identifier: LGPL-3.0-only
2
3 1
"""Core package for Doorstop."""
4 1
5 1
from doorstop.core.builder import build, find_document, find_item
6 1
from doorstop.core.document import Document
7
from doorstop.core.item import Item
8
from doorstop.core.tree import Tree
9