chore: Fix for additional linting rules

This commit is contained in:
Marty Oehme 2025-09-11 13:38:47 +02:00
parent 96cd4929c9
commit f5455b6946
Signed by: Marty
GPG key ID: 4E535BC19C61886E
7 changed files with 58 additions and 40 deletions

View file

@ -1,4 +1,9 @@
import re
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from papis_extract.annotation import Annotation
from papis_extract.exporter import Exporter
import click
import papis.cli
@ -9,8 +14,6 @@ import papis.strings
from papis.document import Document
from papis_extract import extraction
from papis_extract.annotation import Annotation
from papis_extract.exporter import Exporter
from papis_extract.exporters import all_exporters
from papis_extract.extractors import all_extractors
from papis_extract.formatter import Formatter, formatters