Skip to content

Commit

Permalink
refactor: remove unused TYPE_CHECKING
Browse files Browse the repository at this point in the history
  • Loading branch information
christinestraub committed Dec 18, 2023
1 parent 123c062 commit c3228be
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions unstructured_inference/utils.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
from collections.abc import Mapping
from html.parser import HTMLParser
from io import StringIO
from typing import TYPE_CHECKING, Any, Callable, Hashable, Iterable, Iterator, Union
from typing import Any, Callable, Hashable, Iterable, Iterator, Union

from PIL import Image

from unstructured_inference.inference.layoutelement import LayoutElement

if TYPE_CHECKING:
pass


class LazyEvaluateInfo:
"""Class that stores the information needed to lazily evaluate a function with given arguments.
Expand Down

0 comments on commit c3228be

Please sign in to comment.