Skip to content

Commit 99a0f02

Browse files
committed
feat: update polywrap-core
1 parent ed032ac commit 99a0f02

33 files changed

Lines changed: 92 additions & 88 deletions

File tree

packages/polywrap-client/typings/polywrap_core/__init__.pyi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ This type stub file was generated by pyright.
33
"""
44

55
from .types import *
6+
from .algorithms import *
67
from .uri_resolution import *
78
from .utils import *
89

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
"""
2+
This type stub file was generated by pyright.
3+
"""
4+
5+
from .build_clean_uri_history import *
6+
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
"""
2+
This type stub file was generated by pyright.
3+
"""
4+
5+
from typing import List, Optional, Union
6+
from ..types import IUriResolutionStep
7+
8+
CleanResolutionStep = List[Union[str, "CleanResolutionStep"]]
9+
def build_clean_uri_history(history: List[IUriResolutionStep], depth: Optional[int] = ...) -> CleanResolutionStep:
10+
...
11+

packages/polywrap-client/typings/polywrap_core/types/__init__.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ This type stub file was generated by pyright.
55
from .client import *
66
from .file_reader import *
77
from .invoke import *
8-
from .env import *
98
from .uri import *
9+
from .env import *
1010
from .uri_package_wrapper import *
1111
from .uri_resolution_context import *
1212
from .uri_resolution_step import *

packages/polywrap-client/typings/polywrap_core/uri_resolution/uri_resolution_context.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
This type stub file was generated by pyright.
33
"""
44

5-
from typing import List, Optional, Set, Tuple
5+
from typing import List, Optional, Set
66
from ..types import IUriResolutionContext, IUriResolutionStep, Uri
77

88
class UriResolutionContext(IUriResolutionContext):
99
resolving_uri_set: Set[Uri]
1010
resolution_path: List[Uri]
1111
history: List[IUriResolutionStep]
12-
__slots__: Tuple[str] = ...
12+
__slots__ = ...
1313
def __init__(self, resolving_uri_set: Optional[Set[Uri]] = ..., resolution_path: Optional[List[Uri]] = ..., history: Optional[List[IUriResolutionStep]] = ...) -> None:
1414
...
1515

packages/polywrap-client/typings/polywrap_core/utils/__init__.pyi

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ This type stub file was generated by pyright.
44

55
from .get_env_from_uri_history import *
66
from .init_wrapper import *
7-
from .build_clean_uri_history import *
87
from .instance_of import *
98
from .maybe_async import *
109

packages/polywrap-client/typings/polywrap_core/utils/build_clean_uri_history.pyi

Lines changed: 0 additions & 16 deletions
This file was deleted.

packages/polywrap-client/typings/polywrap_core/utils/instance_of.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ This type stub file was generated by pyright.
44

55
from typing import Any
66

7-
def instance_of(obj: Any, cls: Any) -> bool:
7+
def instance_of(obj: Any, cls: Any): # -> bool:
88
...
99

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
from .types import *
2+
from .algorithms import *
23
from .uri_resolution import *
34
from .utils import *
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from .build_clean_uri_history import *

0 commit comments

Comments
 (0)