From 1cae803c28da6db95fcf3f2b0d3a8390ec50911f Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Wed, 19 Mar 2025 09:11:59 +0000 Subject: [PATCH] Fix Python formatting issues Co-Authored-By: peterbendel@neon.tech --- test_runner/fixtures/neon_api.py | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/test_runner/fixtures/neon_api.py b/test_runner/fixtures/neon_api.py index a432f2b7f5..7e56513f50 100644 --- a/test_runner/fixtures/neon_api.py +++ b/test_runner/fixtures/neon_api.py @@ -377,9 +377,7 @@ class NeonAPI: return cast("dict[str, Any]", resp.json()) - def set_project_vpc_endpoint( - self, project_id: str, vpc_endpoint_id: str - ) -> dict[str, Any]: + def set_project_vpc_endpoint(self, project_id: str, vpc_endpoint_id: str) -> dict[str, Any]: """ Sets a VPC endpoint for a project. @@ -400,9 +398,7 @@ class NeonAPI: return cast("dict[str, Any]", resp.json()) - def delete_project_vpc_endpoint( - self, project_id: str, vpc_endpoint_id: str - ) -> dict[str, Any]: + def delete_project_vpc_endpoint(self, project_id: str, vpc_endpoint_id: str) -> dict[str, Any]: """ Deletes a VPC endpoint from a project. @@ -878,9 +874,7 @@ class NeonAPI: return cast("dict[str, Any]", resp.json()) - def create_branch_role( - self, project_id: str, branch_id: str, role_name: str - ) -> dict[str, Any]: + def create_branch_role(self, project_id: str, branch_id: str, role_name: str) -> dict[str, Any]: """ Creates a new role in a branch. @@ -910,9 +904,7 @@ class NeonAPI: return cast("dict[str, Any]", resp.json()) - def get_branch_role( - self, project_id: str, branch_id: str, role_name: str - ) -> dict[str, Any]: + def get_branch_role(self, project_id: str, branch_id: str, role_name: str) -> dict[str, Any]: """ Retrieves details of a specific role in a branch. @@ -934,9 +926,7 @@ class NeonAPI: return cast("dict[str, Any]", resp.json()) - def delete_branch_role( - self, project_id: str, branch_id: str, role_name: str - ) -> dict[str, Any]: + def delete_branch_role(self, project_id: str, branch_id: str, role_name: str) -> dict[str, Any]: """ Deletes a role from a branch.