瀏覽代碼

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

Subhajit Ghosh 1 年之前
父節點
當前提交
a5d5e5825f
共有 3 個文件被更改,包括 2 次插入2 次删除
  1. 1 1
      embedchain/__init__.py
  2. 1 1
      embedchain/apps/PersonApp.py
  3. 0 0
      embedchain/apps/app.py

+ 1 - 1
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

+ 1 - 1
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

embedchain/apps/App.py → embedchain/apps/app.py