Renamed apps/App.py to follow snake case convention (#708)

This commit is contained in:
Subhajit Ghosh
2023-09-27 10:35:22 +05:30
committed by GitHub
parent 0f16c72762
commit a5d5e5825f
3 changed files with 2 additions and 2 deletions

View File

@@ -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