From a5d5e5825fd73a60028bd8b52c2b8b5337dbcb68 Mon Sep 17 00:00:00 2001 From: Subhajit Ghosh <99127578+subhajit20@users.noreply.github.com> Date: Wed, 27 Sep 2023 10:35:22 +0530 Subject: [PATCH] Renamed apps/App.py to follow snake case convention (#708) --- embedchain/__init__.py | 2 +- embedchain/apps/PersonApp.py | 2 +- embedchain/apps/{App.py => app.py} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename embedchain/apps/{App.py => app.py} (100%) diff --git a/embedchain/__init__.py b/embedchain/__init__.py index a09fe9c3..17397e0d 100644 --- a/embedchain/__init__.py +++ b/embedchain/__init__.py @@ -2,7 +2,7 @@ import importlib.metadata __version__ = importlib.metadata.version(__package__ or __name__) -from embedchain.apps.App import App # noqa: F401 +from embedchain.apps.app import App # noqa: F401 from embedchain.apps.custom_app import CustomApp # noqa: F401 from embedchain.apps.Llama2App import Llama2App # noqa: F401 from embedchain.apps.open_source_app import OpenSourceApp # noqa: F401 diff --git a/embedchain/apps/PersonApp.py b/embedchain/apps/PersonApp.py index 79a8d5c4..6c727482 100644 --- a/embedchain/apps/PersonApp.py +++ b/embedchain/apps/PersonApp.py @@ -1,6 +1,6 @@ from string import Template -from embedchain.apps.App import App +from embedchain.apps.app import App from embedchain.apps.open_source_app import OpenSourceApp from embedchain.config import BaseLlmConfig from embedchain.config.apps.base_app_config import BaseAppConfig diff --git a/embedchain/apps/App.py b/embedchain/apps/app.py similarity index 100% rename from embedchain/apps/App.py rename to embedchain/apps/app.py