Skip to content

Commit 8ba2e57

Browse files
fix cyclic import
1 parent fa1e28d commit 8ba2e57

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

mindee/input/__init__.py

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
from mindee.input.local_response import LocalResponse
22
from mindee.input.page_options import PageOptions
3-
from mindee.input.sources import (
4-
Base64Input,
5-
BytesInput,
6-
FileInput,
7-
InputType,
8-
LocalInputSource,
9-
PathInput,
10-
UrlInputSource,
11-
)
3+
from mindee.input.sources.base_64_input import Base64Input
4+
from mindee.input.sources.bytes_input import BytesInput
5+
from mindee.input.sources.file_input import FileInput
6+
from mindee.input.sources.local_input_source import InputType, LocalInputSource
7+
from mindee.input.sources.path_input import PathInput
8+
from mindee.input.sources.url_input_source import UrlInputSource
129
from mindee.input.workflow_options import WorkflowOptions

0 commit comments

Comments
 (0)