From e868e4520a5a7407e5acd472e827c4210f64fd52 Mon Sep 17 00:00:00 2001 From: ramnique <30795890+ramnique@users.noreply.github.com> Date: Wed, 15 Jan 2025 20:19:12 +0530 Subject: [PATCH] remove print logs from py-sdk --- apps/python-sdk/pyproject.toml | 2 +- apps/python-sdk/src/rowboat/client.py | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/python-sdk/pyproject.toml b/apps/python-sdk/pyproject.toml index a1ac7ed1..fc4b6814 100644 --- a/apps/python-sdk/pyproject.toml +++ b/apps/python-sdk/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "rowboat" -version = "0.1.0" +version = "0.2.0" authors = [ { name = "Your Name", email = "your.email@example.com" }, ] diff --git a/apps/python-sdk/src/rowboat/client.py b/apps/python-sdk/src/rowboat/client.py index 94bb6052..e15d9c96 100644 --- a/apps/python-sdk/src/rowboat/client.py +++ b/apps/python-sdk/src/rowboat/client.py @@ -30,8 +30,6 @@ class Client: messages=messages, state=state ) - # print request json - print(request.model_dump_json()) response = requests.post(self.base_url, headers=self.headers, data=request.model_dump_json()) if not response.status_code == 200: