소스 검색

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

Subhajit Ghosh 1 년 전
부모
커밋
4eb2c0e123
3개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      embedchain/__init__.py
  2. 1 1
      embedchain/apps/Llama2App.py
  3. 0 0
      embedchain/apps/custom_app.py

+ 1 - 1
embedchain/__init__.py

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

+ 1 - 1
embedchain/apps/Llama2App.py

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

embedchain/apps/CustomApp.py → embedchain/apps/custom_app.py