diff --git a/letta/__init__.py b/letta/__init__.py index e282a45f..c2fbcc86 100644 --- a/letta/__init__.py +++ b/letta/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.6.32" +__version__ = "0.6.33" # import clients from letta.client.client import LocalClient, RESTClient, create_client diff --git a/letta/functions/ast_parsers.py b/letta/functions/ast_parsers.py index 9293efb1..6e69226b 100644 --- a/letta/functions/ast_parsers.py +++ b/letta/functions/ast_parsers.py @@ -34,7 +34,7 @@ def resolve_type(annotation: str): try: if annotation.startswith("list["): inner_type = annotation[len("list[") : -1] - resolved_type = resolve_type(inner_type) + resolve_type(inner_type) return list elif annotation.startswith("dict["): inner_types = annotation[len("dict[") : -1] @@ -42,7 +42,7 @@ def resolve_type(annotation: str): return dict elif annotation.startswith("tuple["): inner_types = annotation[len("tuple[") : -1] - type_list = [resolve_type(t.strip()) for t in inner_types.split(",")] + [resolve_type(t.strip()) for t in inner_types.split(",")] return tuple parsed = ast.literal_eval(annotation) diff --git a/pyproject.toml b/pyproject.toml index b8202a6b..eb92905a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "letta" -version = "0.6.32" +version = "0.6.33" packages = [ {include = "letta"}, ]