From ed02aebf9a0db8989e8ca952a3bde2c373a32b09 Mon Sep 17 00:00:00 2001 From: Prikshit <101416953+Prikshit7766@users.noreply.github.com> Date: Mon, 9 Oct 2023 20:35:11 +0530 Subject: [PATCH] Rename 'PersonApp.py' to 'person_app.py' (#752) --- embedchain/__init__.py | 2 +- embedchain/apps/{PersonApp.py => person_app.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename embedchain/apps/{PersonApp.py => person_app.py} (100%) diff --git a/embedchain/__init__.py b/embedchain/__init__.py index 17397e0d..b26a8f24 100644 --- a/embedchain/__init__.py +++ b/embedchain/__init__.py @@ -6,6 +6,6 @@ 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 -from embedchain.apps.PersonApp import (PersonApp, # noqa: F401 +from embedchain.apps.person_app import (PersonApp, # noqa: F401 PersonOpenSourceApp) from embedchain.vectordb.chroma import ChromaDB # noqa: F401 diff --git a/embedchain/apps/PersonApp.py b/embedchain/apps/person_app.py similarity index 100% rename from embedchain/apps/PersonApp.py rename to embedchain/apps/person_app.py