mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-07-25 18:05:19 +00:00
8 lines
159 B
Python
8 lines
159 B
Python
![]() |
from __future__ import annotations
|
||
|
|
||
|
from typing import Sequence
|
||
|
|
||
|
path: list[str]
|
||
|
|
||
|
def find(resource_name: str, paths: Sequence[str] | None = None) -> str: ...
|