Renamed apps/CustomApp.py to follow snake case convention (#678)

This commit is contained in:
Subhajit Ghosh
2023-09-27 04:59:46 +05:30
committed by GitHub
parent b8a838aee1
commit 4eb2c0e123
3 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ import importlib.metadata
__version__ = importlib.metadata.version(__package__ or __name__)
from embedchain.apps.App import App # noqa: F401
from embedchain.apps.CustomApp import CustomApp # 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

View File

@@ -1,6 +1,6 @@
from typing import Optional
from embedchain.apps.CustomApp import CustomApp
from embedchain.apps.custom_app import CustomApp
from embedchain.config import CustomAppConfig
from embedchain.embedder.openai import OpenAiEmbedder
from embedchain.helper.json_serializable import register_deserializable