From 27980159b4edc94cb2746f9b70bdf94c8d4044b6 Mon Sep 17 00:00:00 2001 From: Armando Belardo <11140328+armandobelardo@users.noreply.github.com> Date: Mon, 22 Apr 2024 11:49:52 -0400 Subject: [PATCH 1/2] fix, python: in best-case formatting add missing tab --- .../python/src/fern_python/snippet/snippet_template_factory.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generators/python/src/fern_python/snippet/snippet_template_factory.py b/generators/python/src/fern_python/snippet/snippet_template_factory.py index 7fa9070806b..98fe1fc37da 100644 --- a/generators/python/src/fern_python/snippet/snippet_template_factory.py +++ b/generators/python/src/fern_python/snippet/snippet_template_factory.py @@ -718,7 +718,7 @@ def generate_templates(self) -> List[SnippetRegistryEntry]: # Create the outermost template, with the above template inputs init_expression = AST.Expression( - f"await {self.CLIENT_FIXTURE_NAME}.{package_path}{get_endpoint_name(endpoint)}(\n{self.TEMPLATE_SENTINEL}\n)" + f"await {self.CLIENT_FIXTURE_NAME}.{package_path}{get_endpoint_name(endpoint)}(\n\t{self.TEMPLATE_SENTINEL}\n)" ) init_string_template = self._expression_to_snippet_str(init_expression) function_template = Template.factory.generic( From a1361c7e20e349e24fc03961c50457374a54b66e Mon Sep 17 00:00:00 2001 From: Armando Belardo <11140328+armandobelardo@users.noreply.github.com> Date: Mon, 22 Apr 2024 11:50:18 -0400 Subject: [PATCH 2/2] Update VERSION --- generators/python/sdk/VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generators/python/sdk/VERSION b/generators/python/sdk/VERSION index 916201c9982..d001c2ea883 100644 --- a/generators/python/sdk/VERSION +++ b/generators/python/sdk/VERSION @@ -1 +1 @@ -1.3.0-rc5 +1.3.0-rc6