From c0efe4dbcfa371d99622acaf25db6f0dc9510238 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Wed, 5 Jul 2023 11:49:22 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore(=5F=5Finit=5F=5F.py):=20ad?= =?UTF-8?q?d=20noqa=20comments=20to=20import=20statements=20to=20ignore=20?= =?UTF-8?q?linting=20errors=20The=20noqa=20comments=20have=20been=20added?= =?UTF-8?q?=20to=20the=20import=20statements=20to=20ignore=20the=20linting?= =?UTF-8?q?=20errors=20raised=20by=20the=20linter.=20This=20ensures=20that?= =?UTF-8?q?=20the=20linting=20errors=20related=20to=20the=20imports=20are?= =?UTF-8?q?=20ignored=20and=20the=20code=20can=20be=20properly=20executed?= =?UTF-8?q?=20without=20any=20issues.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/backend/langflow/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/backend/langflow/__init__.py b/src/backend/langflow/__init__.py index 9b80c2ea7..f6d1facdf 100644 --- a/src/backend/langflow/__init__.py +++ b/src/backend/langflow/__init__.py @@ -1,6 +1,6 @@ from importlib import metadata -from langflow.cache import cache_manager -from langflow.processing.process import load_flow_from_json +from langflow.cache import cache_manager # noqa: E402 +from langflow.processing.process import load_flow_from_json # noqa: E402 try: __version__ = metadata.version(__package__) @@ -9,4 +9,5 @@ except metadata.PackageNotFoundError: __version__ = "" del metadata # optional, avoids polluting the results of dir(__package__) + __all__ = ["load_flow_from_json", "cache_manager"]