SDK: improve IDE highlighting/type support (#3967)

This commit is contained in:
Stanislav Novosad
2025-11-11 15:34:04 -07:00
committed by GitHub
parent 6794bbf70f
commit c8baa9f3ec
2 changed files with 11 additions and 1 deletions

View File

@@ -1,7 +1,12 @@
import typing
from typing import Any
if typing.TYPE_CHECKING:
from skyvern.library.skyvern import Skyvern # noqa: E402
from skyvern.library.skyvern_sdk import SkyvernSdk # noqa: E402
# noinspection PyUnresolvedReferences
__all__ = ["Skyvern"]
__all__ = ["Skyvern", "SkyvernSdk"]
def __getattr__(name: str) -> Any: