Passed
Push — issue735-subject-filtering ( d4533d...f9dfa6 )
by Osma
03:38
created

annif.vocab   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 9
dl 0
loc 12
rs 10
c 0
b 0
f 0
wmc 0
1
"""Annif vocabulary functionality"""
2
3
from .subject_index import SubjectIndexFile, SubjectIndexFilter
4
from .types import SubjectIndex
5
from .vocab import AnnifVocabulary
6
7
__all__ = [
8
    "AnnifVocabulary",
9
    "SubjectIndex",
10
    "SubjectIndexFile",
11
    "SubjectIndexFilter",
12
]
13