Skip to content

Commit

Permalink
fix cyclic import
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianMindee committed Dec 6, 2024
1 parent fa1e28d commit 8ba2e57
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions mindee/input/__init__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
from mindee.input.local_response import LocalResponse
from mindee.input.page_options import PageOptions
from mindee.input.sources import (
Base64Input,
BytesInput,
FileInput,
InputType,
LocalInputSource,
PathInput,
UrlInputSource,
)
from mindee.input.sources.base_64_input import Base64Input
from mindee.input.sources.bytes_input import BytesInput
from mindee.input.sources.file_input import FileInput
from mindee.input.sources.local_input_source import InputType, LocalInputSource
from mindee.input.sources.path_input import PathInput
from mindee.input.sources.url_input_source import UrlInputSource
from mindee.input.workflow_options import WorkflowOptions

0 comments on commit 8ba2e57

Please sign in to comment.