From b71913a0aa1f6b39e1f0df5b588eac5e47c85a37 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Wed, 5 Jul 2023 16:42:13 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix(=5F=5Fmain=5F=5F.py):=20chan?= =?UTF-8?q?ge=20word=20variable=20from=20"LangFlow"=20to=20"Langflow"=20fo?= =?UTF-8?q?r=20consistency=20=F0=9F=90=9B=20fix(schemas.py):=20change=20cl?= =?UTF-8?q?ass=20name=20from=20"ExportedFlow"=20to=20"Exported=20flow=20fr?= =?UTF-8?q?om=20Langflow"=20for=20consistency=20The=20word=20variable=20in?= =?UTF-8?q?=20=5F=5Fmain=5F=5F.py=20is=20changed=20from=20"LangFlow"=20to?= =?UTF-8?q?=20"Langflow"=20to=20maintain=20consistency=20in=20naming=20con?= =?UTF-8?q?ventions.=20Similarly,=20the=20class=20name=20in=20schemas.py?= =?UTF-8?q?=20is=20changed=20from=20"ExportedFlow"=20to=20"Exported=20flow?= =?UTF-8?q?=20from=20Langflow"=20for=20consistency=20in=20naming=20convent?= =?UTF-8?q?ions.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/backend/langflow/__main__.py | 2 +- src/backend/langflow/api/v1/schemas.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/langflow/__main__.py b/src/backend/langflow/__main__.py index 9002a20ee..385e74932 100644 --- a/src/backend/langflow/__main__.py +++ b/src/backend/langflow/__main__.py @@ -265,7 +265,7 @@ def get_free_port(port): def print_banner(host, port): # console = Console() - word = "LangFlow" + word = "Langflow" colors = ["#3300cc"] styled_word = "" diff --git a/src/backend/langflow/api/v1/schemas.py b/src/backend/langflow/api/v1/schemas.py index f5f1f9ccf..22df4a977 100644 --- a/src/backend/langflow/api/v1/schemas.py +++ b/src/backend/langflow/api/v1/schemas.py @@ -23,7 +23,7 @@ class GraphData(BaseModel): class ExportedFlow(BaseModel): - """Exported flow from LangFlow.""" + """Exported flow from Langflow.""" description: str name: str