refactor: Move Annotations into annotation module
This commit is contained in:
parent
3670f70319
commit
31b878c9eb
3 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,7 @@ import papis.config
|
|||
import papis.document
|
||||
from papis.document import Document
|
||||
|
||||
from papis_extract.annotation_data import Annotation, AnnotatedDocument
|
||||
from papis_extract.annotation import Annotation, AnnotatedDocument
|
||||
|
||||
logger = papis.logging.get_logger(__name__)
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
from dataclasses import dataclass, field
|
||||
from typing import Protocol
|
||||
|
||||
from papis_extract.annotation_data import AnnotatedDocument
|
||||
from papis_extract.annotation import AnnotatedDocument
|
||||
|
||||
|
||||
@dataclass
|
||||
|
|
Loading…
Reference in a new issue