Spaces:
Sleeping
Sleeping
Jiang Xiaolan
commited on
Commit
·
b1286d3
1
Parent(s):
1301d4b
remove add sys path
Browse files
app.py
CHANGED
@@ -22,12 +22,12 @@ def clone_repo():
|
|
22 |
|
23 |
# 使用 GitHub Token 进行身份验证并克隆仓库
|
24 |
clone_command = f'git clone https://{github_token}@github.com/mamba-ai/invoice_agent.git'
|
25 |
-
|
|
|
26 |
logger.warning("Repository already exists.")
|
27 |
-
repo_dir = 'invoice_agent'
|
28 |
# 将仓库路径添加到 Python 模块搜索路径中
|
29 |
-
logger.warning(f"Adding {os.path.abspath(repo_dir)} to sys.path")
|
30 |
-
sys.path.append(os.path.abspath(repo_dir))
|
31 |
return True
|
32 |
else:
|
33 |
logger.info("Cloning repository...")
|
|
|
22 |
|
23 |
# 使用 GitHub Token 进行身份验证并克隆仓库
|
24 |
clone_command = f'git clone https://{github_token}@github.com/mamba-ai/invoice_agent.git'
|
25 |
+
repo_dir = 'invoice_agent'
|
26 |
+
if os.path.exists(repo_dir):
|
27 |
logger.warning("Repository already exists.")
|
|
|
28 |
# 将仓库路径添加到 Python 模块搜索路径中
|
29 |
+
# logger.warning(f"Adding {os.path.abspath(repo_dir)} to sys.path")
|
30 |
+
# sys.path.append(os.path.abspath(repo_dir))
|
31 |
return True
|
32 |
else:
|
33 |
logger.info("Cloning repository...")
|