From 23cf37eee5f910a783754bed9cf1eb0f3dc6b7a8 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Tue, 27 Jun 2023 13:21:40 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20chore(pyproject.toml):=20update?= =?UTF-8?q?=20package=20version=20to=200.2.3=20=F0=9F=94=A5=20refactor(man?= =?UTF-8?q?ager.py):=20remove=20unnecessary=20blank=20line=20at=20the=20en?= =?UTF-8?q?d=20of=20the=20file=20The=20package=20version=20has=20been=20up?= =?UTF-8?q?dated=20to=200.2.3=20in=20the=20pyproject.toml=20file.=20This?= =?UTF-8?q?=20is=20a=20chore=20as=20it=20does=20not=20affect=20the=20funct?= =?UTF-8?q?ionality=20of=20the=20package.=20The=20blank=20line=20at=20the?= =?UTF-8?q?=20end=20of=20the=20manager.py=20file=20has=20been=20removed=20?= =?UTF-8?q?as=20it=20is=20unnecessary=20and=20does=20not=20add=20any=20val?= =?UTF-8?q?ue=20to=20the=20code.=20This=20is=20a=20refactor=20as=20it=20im?= =?UTF-8?q?proves=20the=20code=20readability.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- poetry.lock | 12 ++++++------ pyproject.toml | 2 +- src/backend/langflow/chat/manager.py | 2 -- 3 files changed, 7 insertions(+), 9 deletions(-) diff --git a/poetry.lock b/poetry.lock index b13392910..b854f5c2e 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1565,14 +1565,14 @@ uritemplate = ">=3.0.1,<5" [[package]] name = "google-auth" -version = "2.20.0" +version = "2.21.0" description = "Google Authentication Library" category = "main" optional = false python-versions = ">=3.6" files = [ - {file = "google-auth-2.20.0.tar.gz", hash = "sha256:030af34138909ccde0fbce611afc178f1d65d32fbff281f25738b1fe1c6f3eaa"}, - {file = "google_auth-2.20.0-py2.py3-none-any.whl", hash = "sha256:23b7b0950fcda519bfb6692bf0d5289d2ea49fc143717cc7188458ec620e63fa"}, + {file = "google-auth-2.21.0.tar.gz", hash = "sha256:b28e8048e57727e7cf0e5bd8e7276b212aef476654a09511354aa82753b45c66"}, + {file = "google_auth-2.21.0-py2.py3-none-any.whl", hash = "sha256:da3f18d074fa0f5a7061d99b9af8cee3aa6189c987af7c1b07d94566b6b11268"}, ] [package.dependencies] @@ -4977,14 +4977,14 @@ files = [ [[package]] name = "pywin32-ctypes" -version = "0.2.1" +version = "0.2.2" description = "A (partial) reimplementation of pywin32 using ctypes/cffi" category = "main" optional = false python-versions = ">=3.6" files = [ - {file = "pywin32-ctypes-0.2.1.tar.gz", hash = "sha256:934a2def1e5cbc472b2b6bf80680c0f03cd87df65dfd58bfd1846969de095b03"}, - {file = "pywin32_ctypes-0.2.1-py3-none-any.whl", hash = "sha256:b9a53ef754c894a525469933ab2a447c74ec1ea6b9d2ef446f40ec50d3dcec9f"}, + {file = "pywin32-ctypes-0.2.2.tar.gz", hash = "sha256:3426e063bdd5fd4df74a14fa3cf80a0b42845a87e1d1e81f6549f9daec593a60"}, + {file = "pywin32_ctypes-0.2.2-py3-none-any.whl", hash = "sha256:bf490a1a709baf35d688fe0ecf980ed4de11d2b3e37b51e5442587a75d9957e7"}, ] [[package]] diff --git a/pyproject.toml b/pyproject.toml index da75b0207..4fc5e3ce3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "langflow" -version = "0.2.2" +version = "0.2.3" description = "A Python package with a built-in web application" authors = ["Logspace "] maintainers = [ diff --git a/src/backend/langflow/chat/manager.py b/src/backend/langflow/chat/manager.py index b693e00a3..4a1b8e77c 100644 --- a/src/backend/langflow/chat/manager.py +++ b/src/backend/langflow/chat/manager.py @@ -209,5 +209,3 @@ class ChatManager: except Exception as e: logger.error(e) self.disconnect(client_id) - -