refactor: Move Annotations into annotation module

This commit is contained in:
Marty Oehme 2023-09-20 17:22:29 +02:00
parent 3670f70319
commit 31b878c9eb
Signed by: Marty
GPG Key ID: EDBF2ED917B2EF6A
3 changed files with 2 additions and 2 deletions

View File

@ -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__)

View File

@ -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